The add
method adds a key
with given value
when key doesn't exists. Returns true when key doesn't exists otherwise false will be returned.
You can provide a ttl
value. If null is passed, the item will not expire.
The increment
method increments the given key
with given value
. Returns true if the key
where incremented otherwise false will be returned.
If values
is not defined then it will increment the key with 1.
An error will thrown if the key is not a number.
The put
method replaces th given key
with the given value
and ttl
if the key
exists othwerwise it will add the given value
and ttl
.
Returns true if the key
where replaced otherwise false is returned.
This
NoOpCacheAdapter
will do nothing and is used for easily mockingICache
for testing.IMPORT_PATH:
"@daiso-tech/core/cache/adapters"