-
I was wondering if you had any interest in a caching plugin that would be based on an in memory cache (LRU, LFU), and could optionally use redis if passed a client. It would be enabled on a per-model …
-
Currently the cache keeps growing indefinitely.
-
Hello, I was asked to report this.
When I copy data from a different filesystem (ext4) to the first pool and then copy the data from pool 1 to pool 2 the ARC grows twice.
It's probably easiest whe…
-
Hi,
This is the first time we implement Hazelcast 3.6.1 in our application.
We have 8 clusters and this exception only happens when we try to update the cache.
It works fine when we start the c…
-
Say we have an interface called `Cache` and I have a spec that tests its various methods:
```
Describe("Cache", func() {
var c Cache
BeforeEach(func() {
c = NewLRUCache()
…
-
The current implementation uses arrays. Switching to bloom-filters would be better for memory as well. However we need to account for false positives and check for them as well. I guess that should no…
-
We have a Grails 3.1.6 application using grails-cache 3.0.2 and ehcache 2.0.0.BUILD-SNAPSHOT
One of our applications came under heavier-than-usual load lately and we've started experiencing slowdowns…
-
Hi,
Following the build instructions here:
https://pulse-forum.ind.ie/t/building-syncthing/44
On OpenBSD/amd64 with today's git master:
```
$ go run build.go
GOPATH is /home/edd
GOPATH=/home/edd/…
-
Right now cache can hold partition in its entirety ("complete") or not at all. This is problematic for workloads creating large partitions:
- Reading whole partition may result in large read amplifica…
-
First, thanks for the contributors to provide expirable cache on LRU/LFU/ARC.
Here's an issue I encounter while using ARC cache:
After items in ARC cache being all expired (confirmed that Get() ca…