23 questions
0
votes
1
answer
60
views
How to query Redis OM Spring repository by LocalDate(Kotlin) field?
I’m working on a Kotlin project using Redis OM Spring and I have a Redis document class representing train markers:
import com.redis.om.spring.annotations.Document
import com.redis.om.spring....
1
vote
1
answer
136
views
redis-stack-server: can't find redis.conf to modify
I install redis-stack-server on Ubuntu by snap:
sudo apt update
sudo apt install redis-tools
sudo snap install --dangerous --classic <snapname.snap>
then edit the /etc/systemd/system/redis-...
0
votes
2
answers
95
views
Redis command times increase over time on same load
On redis I have around 1.2M json documents,
1st namespace: com.test.api.redis.model.document.PRedis:* around 700K
json keys
2nd nemespace: com.test.api.redis.model.document.SRedis:*
around 550K json ...
0
votes
1
answer
52
views
Redis Stack: Storing JSON document, Deduplicate on property
I have a JSON document coming into Redis that contains a directory path.
Key: "idx:sys:ikSh-pEBejscyM5jrSyY"
"path";"/root/fred/subfolder1/subfolder2/subfolder3"
I may ...
0
votes
2
answers
88
views
Redis stack lettuce pipeline queries
I need to run several ft.aggregate and ft.search queries in a row - the first query result is the input of the second one and so on. I would like to limit redis round trips so I thought I might use ...
1
vote
2
answers
2k
views
Not able to access redis insight in browser
i am using redis stack as a docker image. the redis is connecting to the cli but the redis insight is not opening on the browser.
As far as i've searched the internet the solution for this is to ...
1
vote
1
answer
1k
views
FT.SEARCH to return specific columns only (projection) ex: with RETURN 1 attribute1 not returning any results for JSON
Product: Redis Stack 7.2
Two-part question:
1. SEARCH /Projection on JSON object using REDIS command:
WORKS: Working Query that returns FULL JSON results:
FT.SEARCH account:index "@status: {...
0
votes
0
answers
411
views
Redis-stack docker customize
I want to customize the redis-stack using Dockerfile by adding config file but not work yet
FROM redis/redis-stack:latest
ENV PORT=6379
ENV RIPORT=8001
WORKDIR /db
COPY redis.conf ./redis-stack.conf
...
0
votes
1
answer
2k
views
ERR unknown command 'FT._LIST' .Net Core project
I'm using and installed the latest version of RedisStack with docker, everything was Ok, but suddenly I couldn't run the project and when I run the project the exception raised and it says
...
1
vote
1
answer
2k
views
Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR unknown command 'JSON.SET'
I am using redis-om and Java, I get Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR unknown command 'JSON.SET'
Here is the code that I am using:
@SpringBootApplication
@Configuration
...
2
votes
1
answer
2k
views
Redis JSON: Search for an empty string / null
When I call the following, I get the resulting output:
> FT.CREATE Results ON JSON SCHEMA $.a AS masterId TEXT $.b AS value numeric ...
> <Insert Data>
> FT.AGGREGATE Results .* GROUPBY ...
0
votes
2
answers
5k
views
when I run redis-stack-server,redis-stack config file is not work
I installed redis-stack on Ubuntu20. I changed redis-stack.conf but it not work.I changed daemonize to yes but it not work.
this is log when I run redis-stack-server
root@Server-30c80333-7b1b-40ce-...