0.5.0 • Published 11 months ago
@stash-it/redis-adapter v0.5.0
@stash-it/redis-adapter

@stash-it/redis-adapter is a simple redis adapter that can be used with @stash-it/stash-it.
It uses redis package under the hood.
Installation
npm
npm install @stash-it/redis-adapterdeno
deno add @stash-it/redis-adapteryarn
yarn dlx jsr add @stash-it/redis-adapterpnpm
pnpm dlx jsr add @stash-it/redis-adapterbun
bunx jsr add @stash-it/redis-adapterUsage
// Import stash-it main class.
import { StashIt } from "@stash-it/stash-it";
import { RedisAdapter } from "@stash-it/redis-adapter";
// Create an instance of the adapter. Use whatever URL your redis instance runs on.
const adapter = new RedisAdapter({ url: "redis://localhost:6379" });
// And use it with stash-it.
const stash = new StashIt(adapter);License
MIT
Contribution
Feel free to open an issue or a pull request.