-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(redis): add redis implementation of
KvBufferStore
This implementation is farily straightforward. We will add a `redis` container to the `docker-compose` and set is as the default `KvBufferStore` for header and transaction cache data once we validate it works as expected.
- Loading branch information
dtfiedler
committed
Nov 8, 2023
1 parent
a6bd399
commit 43726c8
Showing
3 changed files
with
125 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/** | ||
* AR.IO Gateway | ||
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
import { RedisClientType, commandOptions, createClient } from 'redis'; | ||
import winston from 'winston'; | ||
|
||
import { KVBufferStore } from '../types.js'; | ||
|
||
export class RedisKvStore implements KVBufferStore { | ||
private client: RedisClientType; | ||
private log: winston.Logger; | ||
|
||
constructor({ log, redisUrl }: { log: winston.Logger; redisUrl: string }) { | ||
this.log = log.child({ class: this.constructor.name }); | ||
this.client = createClient({ | ||
url: redisUrl, | ||
}); | ||
this.client.on('error', (err) => { | ||
this.log.error(`Redis error: ${err}`); | ||
}); | ||
this.client.connect().catch((err) => { | ||
this.log.error(`Redis connection error: ${err}`); | ||
}); | ||
} | ||
|
||
// TODO: close connection to redis safely | ||
|
||
async get(key: string): Promise<Buffer | undefined> { | ||
const value = await this.client.get( | ||
commandOptions({ returnBuffers: true }), | ||
key, | ||
); | ||
return value ?? undefined; | ||
} | ||
|
||
async has(key: string): Promise<boolean> { | ||
return (await this.client.exists(key)) === 1; | ||
} | ||
|
||
async del(key: string): Promise<void> { | ||
if (await this.has(key)) { | ||
await this.client.del(key); | ||
} | ||
} | ||
|
||
async set(key: string, buffer: Buffer): Promise<void> { | ||
await this.client.set(key, buffer); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1044,6 +1044,40 @@ | |
dependencies: | ||
"@randlabs/communication-bridge" "^1.0.0" | ||
|
||
"@redis/[email protected]": | ||
version "1.2.0" | ||
resolved "https://registry.yarnpkg.com/@redis/bloom/-/bloom-1.2.0.tgz#d3fd6d3c0af3ef92f26767b56414a370c7b63b71" | ||
integrity sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg== | ||
|
||
"@redis/[email protected]": | ||
version "1.5.11" | ||
resolved "https://registry.yarnpkg.com/@redis/client/-/client-1.5.11.tgz#5ee8620fea56c67cb427228c35d8403518efe622" | ||
integrity sha512-cV7yHcOAtNQ5x/yQl7Yw1xf53kO0FNDTdDU6bFIMbW6ljB7U7ns0YRM+QIkpoqTAt6zK5k9Fq0QWlUbLcq9AvA== | ||
dependencies: | ||
cluster-key-slot "1.1.2" | ||
generic-pool "3.9.0" | ||
yallist "4.0.0" | ||
|
||
"@redis/[email protected]": | ||
version "1.1.0" | ||
resolved "https://registry.yarnpkg.com/@redis/graph/-/graph-1.1.0.tgz#cc2b82e5141a29ada2cce7d267a6b74baa6dd519" | ||
integrity sha512-16yZWngxyXPd+MJxeSr0dqh2AIOi8j9yXKcKCwVaKDbH3HTuETpDVPcLujhFYVPtYrngSco31BUcSa9TH31Gqg== | ||
|
||
"@redis/[email protected]": | ||
version "1.0.6" | ||
resolved "https://registry.yarnpkg.com/@redis/json/-/json-1.0.6.tgz#b7a7725bbb907765d84c99d55eac3fcf772e180e" | ||
integrity sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw== | ||
|
||
"@redis/[email protected]": | ||
version "1.1.5" | ||
resolved "https://registry.yarnpkg.com/@redis/search/-/search-1.1.5.tgz#682b68114049ff28fdf2d82c580044dfb74199fe" | ||
integrity sha512-hPP8w7GfGsbtYEJdn4n7nXa6xt6hVZnnDktKW4ArMaFQ/m/aR7eFvsLQmG/mn1Upq99btPJk+F27IQ2dYpCoUg== | ||
|
||
"@redis/[email protected]": | ||
version "1.0.5" | ||
resolved "https://registry.yarnpkg.com/@redis/time-series/-/time-series-1.0.5.tgz#a6d70ef7a0e71e083ea09b967df0a0ed742bc6ad" | ||
integrity sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg== | ||
|
||
"@rushstack/ts-command-line@^4.12.2": | ||
version "4.12.2" | ||
resolved "https://registry.yarnpkg.com/@rushstack/ts-command-line/-/ts-command-line-4.12.2.tgz#59b7450c5d75190778cce8b159c7d7043c32cc4e" | ||
|
@@ -2449,6 +2483,11 @@ [email protected]: | |
resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz" | ||
integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== | ||
|
||
[email protected]: | ||
version "1.1.2" | ||
resolved "https://registry.yarnpkg.com/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz#88ddaa46906e303b5de30d3153b7d9fe0a0c19ac" | ||
integrity sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA== | ||
|
||
code-point-at@^1.0.0: | ||
version "1.1.0" | ||
resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz" | ||
|
@@ -3520,6 +3559,11 @@ gc-stats@^1.4.0: | |
nan "^2.13.2" | ||
node-pre-gyp "^0.13.0" | ||
|
||
[email protected]: | ||
version "3.9.0" | ||
resolved "https://registry.yarnpkg.com/generic-pool/-/generic-pool-3.9.0.tgz#36f4a678e963f4fdb8707eab050823abc4e8f5e4" | ||
integrity sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g== | ||
|
||
gensync@^1.0.0-beta.2: | ||
version "1.0.0-beta.2" | ||
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" | ||
|
@@ -5451,6 +5495,18 @@ readdirp@~3.6.0: | |
dependencies: | ||
picomatch "^2.2.1" | ||
|
||
redis@^4.6.10: | ||
version "4.6.10" | ||
resolved "https://registry.yarnpkg.com/redis/-/redis-4.6.10.tgz#07f6ea2b2c5455b098e76d1e8c9b3376114e9458" | ||
integrity sha512-mmbyhuKgDiJ5TWUhiKhBssz+mjsuSI/lSZNPI9QvZOYzWvYGejtb+W3RlDDf8LD6Bdl5/mZeG8O1feUGhXTxEg== | ||
dependencies: | ||
"@redis/bloom" "1.2.0" | ||
"@redis/client" "1.5.11" | ||
"@redis/graph" "1.1.0" | ||
"@redis/json" "1.0.6" | ||
"@redis/search" "1.1.5" | ||
"@redis/time-series" "1.0.5" | ||
|
||
regenerator-runtime@^0.13.4: | ||
version "0.13.9" | ||
resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz" | ||
|
@@ -6670,16 +6726,16 @@ y18n@^5.0.5: | |
resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" | ||
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== | ||
|
||
[email protected], yallist@^4.0.0: | ||
version "4.0.0" | ||
resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" | ||
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== | ||
|
||
yallist@^3.0.0, yallist@^3.0.2, yallist@^3.1.1: | ||
version "3.1.1" | ||
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" | ||
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== | ||
|
||
yallist@^4.0.0: | ||
version "4.0.0" | ||
resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" | ||
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== | ||
|
||
yaml@^2.1.1: | ||
version "2.1.1" | ||
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.1.tgz#1e06fb4ca46e60d9da07e4f786ea370ed3c3cfec" | ||
|