skip to Main Content

Want to use Nestjs with other Redis command

I try to implement nestjs backend and redis as caching. I can do it according to the official document https://docs.nestjs.com/techniques/caching#in-memory-cache. I use the package cache-manager-redis-store and the code in app.module.ts is as shown below. import { Module, CacheModule } from…

VIEW QUESTION

Error in Lua script since last Redis update

Since Redis 6.2.7 (and Redis 7) an existing Lua script stopped working with the error message: "ERR user_script:6: Attempt to modify a readonly table script: 2f405679dab26da46ec86d29bded48f66a99ff64, on @user_script:6." The script is working fine with Redis 6.2.6. I did not find…

VIEW QUESTION

redis delete does not delete the key

In my redis database I have a key: 127.0.0.1:6379[5]> get "263384DB-61DD561800016316-240C0700" "{"json":{"created":"1641895448090335","last_signal":"1641895448","tos":"184","deleted":"0","num_sfds":"4","num_streams":"4","num_medias":"2","num_tags":"2","num_maps":"2","ml_deleted":"0","created_from": ... about 6300 chars I try 127.0.0.1:6379[5]> del "263384DB-61DD561800016316-240C0700" (integer) 1 I also tried: 127.0.0.1:6379[5]> DEL `"263384DB-61DD561800016316-240C0700"` Invalid argument(s) 127.0.0.1:6379[5]> DEL '"263384DB-61DD561800016316-240C0700"' (integer) 0 but value is still…

VIEW QUESTION
Back To Top
Search