Hi @zenofmud. I'm little confused over cache. If I set it to false. wouldn't it should store my values instantaneously?
Case: 1
but here is my error on this code. and it is not storing.
[{"id":"2ad176d6.2631aa","type":"function","z":"8872dfa.15cfd2","name":"","func":"let msgCount = context.get(\"msgCount\") || 0;//get remembered count\nmsgCount++; //increment count\n\ncontext.set('msgCount', msgCount);\n\nmsg.payload = msgCount;\nreturn msg;\n\n","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":460,"y":300,"wires":[["abccbeba8b1946e7","d7d6820b747c07e8"]]},{"id":"d7d6820b747c07e8","type":"q-gate","z":"8872dfa.15cfd2","name":"","controlTopic":"control","defaultState":"queueing","openCmd":"open","closeCmd":"close","toggleCmd":"toggle","queueCmd":"queue","defaultCmd":"default","triggerCmd":"trigger","flushCmd":"flush","resetCmd":"reset","peekCmd":"peek","dropCmd":"drop","statusCmd":"status","maxQueueLength":"","keepNewest":true,"qToggle":false,"persist":true,"storeName":"file","x":550,"y":460,"wires":[["73417c9d5d868f88"]]},{"id":"3a69d2dbe6a2c80a","type":"inject","z":"8872dfa.15cfd2","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payloadType":"date","x":260,"y":280,"wires":[["2ad176d6.2631aa"]]},{"id":"73417c9d5d868f88","type":"debug","z":"8872dfa.15cfd2","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":790,"y":460,"wires":[]},{"id":"08eef9e2a6c18ea2","type":"inject","z":"8872dfa.15cfd2","name":"flush","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"control","payload":"flush","payloadType":"str","x":250,"y":460,"wires":[["d7d6820b747c07e8"]]},{"id":"abccbeba8b1946e7","type":"debug","z":"8872dfa.15cfd2","name":"","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":850,"y":300,"wires":[]}]
Error: File Store cache disabled - only asynchronous access supported
and
Case 2:
If I set cache to default and flush interval to 5 or 10 seconds. It is not flushing my all queue values. Suppose I push values at 1 sec rate. the after 20 counts I stop nodered and restart it. but It is never gonna give me all 20 values.
in my setting.js
code is same above.
Is there any limitation on minimum time?
Using ubuntu on Virtualbox.