This commit is contained in:
Joelson
2025-09-17 18:49:23 -03:00
parent 21c3225c52
commit e081df9ced
42 changed files with 4129 additions and 411 deletions

View File

@@ -35,4 +35,8 @@ export class RedisClientAdapter implements IRedisClient {
async ttl(key: string): Promise<number> {
return this.redis.ttl(key);
}
async eval(script: string, numKeys: number, ...keysAndArgs: (string | number)[]): Promise<any> {
return this.redis.eval(script, numKeys, ...keysAndArgs);
}
}