Io stesso sono in grado di trovare le risposte alle domande seguenti.
Devi solo inserire il @Index
annotazione a livello di campo. @Index
annotions contrassegna la proprietà come per l'indicizzazione che utilizza Redis {@literal SET} per tenere traccia degli oggetti con valori corrispondenti.
@Indexed
private String name;
@Ref:https://scalegrid.io/blog/introduction-to-redis-data-structures-hash/
1) Come vedere i dati effettivi memorizzati nel redis?
redis 127.0.0.1:6379> hgetall Student:1
1) "_class"
2) "com.baeldung.spring.data.redis.model.Student"
3) "id"
4) "1"
5) "name"
6) "John Doe"
7) "gender"
8) "MALE"
9) "grade._class"
10) "java.lang.Integer"
11) "grade"
12) "1"
redis 127.0.0.1:6379> hgetall Student:2
1) "_class"
2) "com.baeldung.spring.data.redis.model.Student"
3) "id"
4) "2"
5) "name"
6) "Michael Harford"
7) "gender"
8) "MALE"
9) "grade._class"
10) "java.lang.Integer"
11) "grade"
12) "2"