redis-om-spring icon indicating copy to clipboard operation
redis-om-spring copied to clipboard

Spring Data Redis extensions for better search, documents models, and more

Results 75 redis-om-spring issues
Sort by recently updated
recently updated
newest added

With `@Indexed` annotation the Index creation gets skipped with the following log message. `Skipping index creation for com.example.demo.PersonEntityIdx because On JSON, cannot set tag field to sortable - mobileNo` ```...

is that possible to add a hashMap as field to store data ,eg. @Documents public class Student{ @Id String id; @Indexed Map courseMap; }

enhancement

Hey, I am unsure whether it's an issue or something I did wrong, and I would appreciate any help on this matter. I have this model: RedisCursorEntity.java: ``` package com.bloxbean.cardano.yaci.store.core.storage.impl.model;...

Here a snippet: SearchStream searchStream = entityStream.of(MeetingDetailDocument.class) if (organizingEntity != null) { stream.filter(MeetingDetailDocument$.ORGANIZING_ENTITY.eq(organizingEntity)); } organizing entity is a String (TAG). if we pass"a/b" to eq method, the / is not...

When utilizing [@Cacheable](https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/cache/annotation/Cacheable.html) in Spring, you have the option to employ the GenericJackson2JsonRedisSerializer. However, it employs the Redis `set` method rather than `json.set`. It would be advantageous to have an...

there are incrBy can easily do some plus on fields and no need manually add lock, which is perfect. Any solution can achieve the upsert (like Mongo) function, say if...

enhancement

I have two Redis Enterprise Cluster Databases with 2 different ports, and I need to connect to both databases from single redisom application. Can this be done ?

enhancement

Idea : - Annotation with ephemeral options (TTL, delete docs, ...) - Index lazy created if not already exists at Find*By* call.

enhancement

If I create a call chain of watch, multi, json set and exec to be sure the key is not changed before I overwrite it, the json set call is...

bug

**Question**: Does Redis om Spring support standard interface/class-based projections? For example: Here is my projection class: `public interface CachedClassificationSkimmedProjection { Integer getSurId(); String getName(); String getIconUrl(); }` My document repository:...

enhancement