Github:https://github.com/mahdavipanah/keyv-upstash
keyv-upstash 是 Keyv 的存储适配器,可将其连接到无服务器 Redis 平台 Upstash Redis。借助此适配器,您可以为无服务器应用程序中的键值存储提供简单、高效且灵活的解决方案。
Keyv是一个多功能的键值存储库,通过适配器支持多个后端。它提供:
基于 TTL 的过期:非常适合缓存或持久存储。
命名空间支持:避免共享环境中的按键冲突。
可扩展性:轻松构建自定义模块或添加压缩等功能。
Keyv 可与许多适配器配合使用,例如 Redis、SQLite、MongoDB,现在还支持 Upstash Redis 的 keyv-upstash。
keyv-upstash 通过与 Upstash Redis 集成来扩展 Keyv 的功能,提供:
无服务器兼容性:Upstash Redis 无需管理连接即可工作,自动扩展,非常适合无服务器应用程序。
灵活:兼容Keyv生态,支持第三方扩展。
Cache Layering:与 Cacheable 结合进行多层缓存。
无供应商锁定:与 serverless-redis-http 完全兼容,因此您可以设置自己的无服务器 Redis 并使用此适配器。
按照以下步骤集成 keyv-upstash:
安装 Keyv 和 Upstash 适配器:
npm install keyv keyv-upstash
可选:安装 Cacheable 以进行分层缓存:
npm install cacheable
确保您在 Upstash 中创建了 Redis 数据库。以下是如何在项目中使用 keyv-upstash:
import Keyv from 'keyv'; import { KeyvUpstash } from 'keyv-upstash'; const keyv = new Keyv({ store: new KeyvUpstash({ url: 'your-upstash-redis-url', token: 'your-upstash-redis-token', }), }); // Set a key-value pair await keyv.set('foo', 'bar'); // Retrieve the value const value = await keyv.get('foo'); console.log(value); // 'bar'
命名空间可防止键冲突并允许范围清除:
const keyv = new Keyv({ store: new KeyvUpstash({ url: 'your-upstash-redis-url', token: 'your-upstash-redis-token', namespace: 'my-namespace', }), }); await keyv.set('foo', 'bar'); // Stored as 'my-namespace::foo'
将 keyv-upstash 与 Cacheable 结合起来进行多层缓存:
import { Cacheable } from 'cacheable'; const redisStore = new KeyvUpstash({ url: 'your-upstash-redis-url', token: 'your-upstash-redis-token', }); const cache = new Cacheable({ primary: new Map(), // Fast in-memory caching secondary: redisStore, // Persistent Redis caching }); await cache.set('foo', 'bar', { ttl: 1000 }); // Stores in both layers const value = await cache.get('foo'); // Fast lookup from memory or Redis console.log(value); // 'bar'
使用 setMany 和 getMany 提高性能:
await keyv.setMany([ { key: 'key1', value: 'value1' }, { key: 'key2', value: 'value2' }, ]); const values = await keyv.getMany(['key1', 'key2']); console.log(values); // ['value1', 'value2']
使用defaultTtl、keyPrefixSeparator 和clearBatchSize 等选项自定义您的设置。
以上是keyv-upstash 简介:无服务器 Redis 的无缝键值存储的详细内容。更多信息请关注PHP中文网其他相关文章!