
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
# Get the latest release.
npm i cachu
import { Cache } from 'cachu'
const cache = new Cache({
maximumAge: '10m', // 10 minutes, can be specified as number (in seconds) or readable string
...
})
// Add a new record.
await cache.add('one', 'Hello World')
const record = await cache.get('one') // 'Hello World'
autodelete
to delete overaged entries on adding/updating (disabled by default)maximumAge
to set the maximum age for each record in the cache (defaults to 600s)maximumAmount
to set the maximum size for the cache (defaults to 10000)maximumRecordSize
to set the maximum size for each record (defaults to 10 KB)add()
addMany()
get()
getMany()
update()
updateMany()
remove()
removeMany()
has()
size()
(get the cache size in bytes)keys()
values()
clear()
(delete all overaged records manually)v7.0.0
changed the way you create a new cache.
// before v7
import { useCache } from 'cachu'
const cache = useCache({
maxAge: '10m',
maxAmount: 10000,
autodelete: false
})
// v7
import { Cache } from 'cachu'
const cache = new Cache({
maximumAge: '10m',
maximumAmount: 10000,
autodelete: false
})
you can now set a maximum size for each record.
import { Cache } from 'cachu'
const cache = new Cache({
maximumRecordSize: '10 KB'
// alternatively, you can specify the amount of bytes as a number
maximumRecordSize: 10000
})
FAQs
👾 A simple key-value cache for Node.js.
We found that cachu demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.