node-shared-cache
node-shared-cache copied to clipboard
An interprocess shared LRU cache module for Node.JS
``` npm i node-shared-cache -S > [email protected] install /Users/changhai.gch/study/egg-sse/node_modules/node-shared-cache > node-gyp rebuild CXX(target) Release/obj.target/binding/src/binding.o In file included from ../src/binding.cc:1: In file included from ../../nan/nan.h:190: ../../nan/nan_maybe_43_inl.h:88:15: error: no member named 'ForceSet'...
On both linux and windows 64-bit systems I received the following message when trying: WIN10 x64: > > const binding = require('node-shared-cache') > undefined > > obj = new binding.Cache("test",...
Hi, Module cannot be built with node version 10+ . I have successfully built on node/9.11.2. with error: Unable to build: ‘class v8::Object’ has no member named ‘ForceSet’ How can...
The node process hangs hard on OSX when attempting to write to a cache or enumerate the keys. Is this intentional? If only Linux is supported, please update the readme...
Documentation gives this example of "c-binary serialization": ``` js console.time('binary serialization'); for(var i = 0; i < 100000; i++) { obj.test = input; } console.timeEnd('binary serialization'); ``` This is just...
It sounds like an interesting project. However, it is not clear whether it has wider applications than LRU cache, e.g. could it be used to share an object between multiple...