hey there!
I was using version 0.1.2 and everything was working fine.
As I updated today to version 0.1.3 I cannot longer retrieve stored key value pairs.
This is what worked on 0.1.2 and is not working in 0.1.3 anymore:
//myAwesomeJSFile1.js
var myAwesomeCache = require("memory-cache");
myAwesomeCache.put("myKey","myValue");
//myAwesomeJSFile2.js
var myAwesomeCache = require("memory-cache");
console.log(myAwesomeCache.get("myKey"));
//prints "myValue" in 0.1.2
//prints null in 0.1.3
does it maybe have something to do with the added parameter validation?
hey there! I was using version 0.1.2 and everything was working fine. As I updated today to version 0.1.3 I cannot longer retrieve stored key value pairs.
This is what worked on 0.1.2 and is not working in 0.1.3 anymore:
does it maybe have something to do with the added parameter validation?
Best regards!