0.5.0 • Published 7 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-adapter
deno
deno add @stash-it/redis-adapter
yarn
yarn dlx jsr add @stash-it/redis-adapter
pnpm
pnpm dlx jsr add @stash-it/redis-adapter
bun
bunx jsr add @stash-it/redis-adapter
Usage
// 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.