Questions tagged [redis-stack-server]

18 questions
2
votes
1 answer

Redisearch on Redis instead of Redis-Stack?

I want to use Redisearch. But problem is there is no Redis-stack docker image in my Organization's private registry. There is Redis version 5 and 6 though. Can I use Rediserach directly on Redis instead of Redis-stack or is there any other way to…
2
votes
1 answer

Docker-Compose command for redis-stack-server persistence

If I use the default redis docker image configured with docker compose as such: redis-storage: image: redis:7.0 container_name: 'redis-storage' command: ["redis-server", "--save", "1200", "32", "--loglevel", "warning"] volumes: -…
mdisibio
  • 3,148
  • 31
  • 47
1
vote
1 answer

Using json vs string values in Redis

I'm evaluating redis to understand between json vs string what provides better retrieval performance. As POC I set below json in redis as both json and string values and noticed that the size of JSON value is more than String - please see attached…
1
vote
1 answer

Set and Get to redis stack server from apache nifi

Actually, I can work fine with Redis in Apache Nifi. But I can't find any reference or documentation of working with Redis Stack and RedisJSON. I've tried to use the current solution that worked with Redis, to use with Redis Stack, but it doesn't…
Mohammadreza Khedri
  • 2,523
  • 1
  • 11
  • 22
1
vote
0 answers

Data stored in Redis-stack server (docker image) gets deleted automatically and backup keys are getting created

For one of my applications, I am using redis-stack server docker image to store data. I am storing data in the form of hash table, for which I have created a unique index using FT.CREATE command. I am running a cronjob(in node-js) to append the data…
1
vote
1 answer

Querying json with RedisJSON

I have a list of users in json format i want to display as a table to an admin user on the user interface. I want to store all the users i redis and i am thinking this is how i would store JSON.SET user $ '{"id":"1","user_id":"1","one": "1","two":…
Gandalf
  • 1
  • 29
  • 94
  • 165
1
vote
0 answers

How to set config ,setup backup & restart Redis Stack Server in Linux

I have used Redis Server earlier now migrating to Redis Stack Server for enabling searching in redis database. I have followed redis stack documentation but how to configure redis config, backup & restart is not mention anywhere in Ubuntu Server.…
Feroz Siddiqui
  • 3,840
  • 6
  • 34
  • 69
0
votes
1 answer

Distributed Redis Search using Redis Index

We are currently utlizing redis search as vector database. We have deployed redis stack cluster with 6 nodes 3 Master and 3 Slaves.Our data is divided into multiple groups for each group we have created index to do fast search, and there can be…
0
votes
1 answer

Issue: Redis JSON CLI SET command to update a variable in object

[ { "senderID": "64d9c926c17fd183a93d5e35", "receiverID": "64d9c92dc17fd183a93d5e39", "timestamp": "2023-08-14T07:39:45.946Z", "content": "bru", "status": "delivered", "type": "chat", "messageID": "8188946b-67e4-4d86-a927-32842361825c" }, ...…
0
votes
2 answers

Can not connect to redis-stack-server from node docker container (locally)

When I run docker container that hass node express app.js it can not connect to redis-stack-server running locally. However, if I do it without docker container everything works fine. I ran esbuild to generate one app.js file but it is express ts…
0
votes
1 answer

KNN Vector similarity search in Redis, is not returning any results

I am trying to use Redis to store the embedding vectors returned from the openAi API, then perform a similarity search to retrieve similar results, in NodeJs. For test purposes, I have 10 keys in Redis at the moment, but the query never returns a…
0
votes
0 answers

Redis / RedisSearch slows down after some time

I have a Redis Stack running inside a podman container, that slows down for specific commands after just a couple of hours of uptime. (Redis v6.2.13, RediSearch v. 2.6.12, RedisJSON v. 2.4.7) For example, FT.SEARCH idx LIMIT 0 0 that counts entries…
0
votes
1 answer

Retrieve a known single index item vector similarity score in Redis Stack

Say I have two indexes with the following schema. SCHEMA = [ TextField("id"), VectorField("embedding", "FLAT", {"TYPE": "FLOAT32", "DIM": 768, "DISTANCE_METRIC": "COSINE"}), ] I have two known ids from each index. Is it possible to retrieve…
snewcomer
  • 2,020
  • 1
  • 19
  • 22
0
votes
0 answers

How to load RediSearch module in Redis stack server installed using docker

i installed Redis Stack Server using this command using docker docker run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest but when i am trying to use the redis-cli on the terminal to see the modules using MODULE LIST it…
0
votes
1 answer

redis-stack does not support environment variables for Redis Insight

I run a regis-stack deployment via docker. See https://hub.docker.com/r/redis/redis-stack. However, I want to host my Redis Insight (included in redis-stack) behind a proxy subpath. I need to enable the proxy mode via RIPROXYENABLE=true. However, if…
Martin Fischer
  • 469
  • 1
  • 7
  • 21
1
2