I use Lru cache in my plugin:LruCache<String, List<String>> lruc = new LruCache<String, List<String>>("myLruCache", 1);Why cache is flushing before each request of my plugin method?
--
and some small question: this cache use RAM? it's included into Java Heap Space?
--