首页 >web前端 >js教程 >keyv-upstash 简介:无服务器 Redis 的无缝键值存储

keyv-upstash 简介:无服务器 Redis 的无缝键值存储

Barbara Streisand
Barbara Streisand原创
2024-12-26 14:45:10446浏览

Introducing keyv-upstash: Seamless Key-Value Storage for Serverless Redis

Github:https://github.com/mahdavipanah/keyv-upstash

keyv-upstash 是 Keyv 的存储适配器,可将其连接到无服务器 Redis 平台 Upstash Redis。借助此适配器,您可以为无服务器应用程序中的键值存储提供简单、高效且灵活的解决方案。

什么是Keyv?

Keyv是一个多功能的键值存储库,通过适配器支持多个后端。它提供:

  • 基于 TTL 的过期:非常适合缓存或持久存储。

  • 命名空间支持:避免共享环境中的按键冲突。

  • 可扩展性:轻松构建自定义模块或添加压缩等功能。

Keyv 可与许多适配器配合使用,例如 Redis、SQLite、MongoDB,现在还支持 Upstash Redis 的 keyv-upstash。


为什么选择 keyv-upstash?

keyv-upstash 通过与 Upstash Redis 集成来扩展 Keyv 的功能,提供:

  1. 无服务器兼容性:Upstash Redis 无需管理连接即可工作,自动扩展,非常适合无服务器应用程序。

  2. 灵活:兼容Keyv生态,支持第三方扩展。

  3. Cache Layering:与 Cacheable 结合进行多层缓存。

  4. 无供应商锁定:与 serverless-redis-http 完全兼容,因此您可以设置自己的无服务器 Redis 并使用此适配器。


入门

按照以下步骤集成 keyv-upstash:

1.安装Keyv和keyv-upstash

安装 Keyv 和 Upstash 适配器:

npm install keyv keyv-upstash

可选:安装 Cacheable 以进行分层缓存:

npm install cacheable

2. 设置 keyv-upstash

确保您在 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn