
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
###Russian Memory cache для node js
Инициализация нового хранилища
'use strict';
var cache = new (require('cache-io'));
Проверка на наличие ключа
cache.has('keyName');
// return boolean
Установка значения кэша
cache.set('keyName',expire,data,callback);
// return value || null
Обновить значения истечения кэша
cache.update('keyName');
// return boolean
Получить значение кэша, если нету то на сохранение:
cache.get('keyName'[,data,time]);
// return mixed
Удалить значение кэша
cache.remove('keyName');
// return boolean
Возвращает ключи кэша
cache.keys();
// return array
###English Memory cache for node js
Initialize the new storage
'use strict';
var cache = new (require('cache-io'));
Checking for key cache
cache.has('keyName');
// return boolean
Setting the cache values
cache.set('keyName',expire,data);
// return null
Refresh cache expiration value
cache.update('keyName');
// return boolean
Get the value of the cache if it does not have to maintain:
cache.get('keyName'[,data,time]);
// return mixed
Remove the cache value
cache.remove('keyName');
// return boolean
Returns the cache keys
cache.keys();
// return array
FAQs
This package is no longer supported and has been deprecated. To avoid malicious use, npm is hanging on to the package name.
We found that cache-io demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.