二级索引

二级索引用于启用基于本机 Redis 结构的查找操作。 值将在每次保存时写入相应的索引,并在对象被删除或过期时被删除。spring-doc.cn

简单属性索引

给定前面显示的示例实体,我们可以通过使用 注释属性来创建索引 ,如以下示例所示:Personfirstname@Indexedspring-doc.cn

示例 1.注释驱动索引
@RedisHash("people")
public class Person {

  @Id String id;
  @Indexed String firstname;
  String lastname;
  Address address;
}

索引是为实际属性值构建的。 保存两个 Persons(例如,“rand”和“aviendha”)会导致设置类似于以下内容的索引:spring-doc.cn

SADD people:firstname:rand e2c7dcee-b8cd-4424-883e-736ce564363e
SADD people:firstname:aviendha a9d4b3a0-50d3-4538-a2fc-f7fc2581ee56

也可以在嵌套元素上具有索引。 Assume 具有一个用 . 在这种情况下, once is not ,我们为每个城市提供 Sets,如以下示例所示:Addresscity@Indexedperson.address.citynullspring-doc.cn

SADD people:address.city:tear e2c7dcee-b8cd-4424-883e-736ce564363e

此外,编程设置允许您在 map 键和列表属性上定义索引,如以下示例所示:spring-doc.cn

@RedisHash("people")
public class Person {

  // ... other properties omitted

  Map<String, String> attributes;     (1)
  Map<String, Person> relatives;      (2)
  List<Address> addresses;            (3)
}
1 SADD people:attributes.map-key:map-value e2c7dcee-b8cd-4424-883e-736ce564363e
2 SADD people:relatives.map-key.firstname:tam e2c7dcee-b8cd-4424-883e-736ce564363e
3 SADD people:addresses.city:tear e2c7dcee-b8cd-4424-883e-736ce564363e
无法在 References 上解析索引。

与键空间一样,您可以配置索引,而无需注释实际的域类型,如以下示例所示:spring-doc.cn

示例 2.使用 @EnableRedisRepositories 设置索引
@Configuration
@EnableRedisRepositories(indexConfiguration = MyIndexConfiguration.class)
public class ApplicationConfig {

  //... RedisConnectionFactory and RedisTemplate Bean definitions omitted

  public static class MyIndexConfiguration extends IndexConfiguration {

    @Override
    protected Iterable<IndexDefinition> initialConfiguration() {
      return Collections.singleton(new SimpleIndexDefinition("people", "firstname"));
    }
  }
}

同样,与键空间一样,您可以以编程方式配置索引,如以下示例所示:spring-doc.cn

例 3.编程索引设置
@Configuration
@EnableRedisRepositories
public class ApplicationConfig {

  //... RedisConnectionFactory and RedisTemplate Bean definitions omitted

  @Bean
  public RedisMappingContext keyValueMappingContext() {
    return new RedisMappingContext(
      new MappingConfiguration(
        new KeyspaceConfiguration(), new MyIndexConfiguration()));
  }

  public static class MyIndexConfiguration extends IndexConfiguration {

    @Override
    protected Iterable<IndexDefinition> initialConfiguration() {
      return Collections.singleton(new SimpleIndexDefinition("people", "firstname"));
    }
  }
}

地理空间索引

假设该类型包含一个 type 的属性,该属性保存特定地址的地理坐标。 通过使用 Spring Data Redis 命令注释属性来添加这些值,如以下示例所示:AddresslocationPoint@GeoIndexedGEOspring-doc.cn

@RedisHash("people")
public class Person {

  Address address;

  // ... other properties omitted
}

public class Address {

  @GeoIndexed Point location;

  // ... other properties omitted
}

public interface PersonRepository extends CrudRepository<Person, String> {

  List<Person> findByAddressLocationNear(Point point, Distance distance);     (1)
  List<Person> findByAddressLocationWithin(Circle circle);                    (2)
}

Person rand = new Person("rand", "al'thor");
rand.setAddress(new Address(new Point(13.361389D, 38.115556D)));

repository.save(rand);                                                        (3)

repository.findByAddressLocationNear(new Point(15D, 37D), new Distance(200, Metrics.KILOMETERS)); (4)
1 对嵌套属性的查询方法声明,使用 和 .PointDistance
2 对嵌套属性的查询方法声明,用于搜索。Circle
3 GEOADD people:address:location 13.361389 38.115556 e2c7dcee-b8cd-4424-883e-736ce564363e
4 GEORADIUS people:address:location 15.0 37.0 200.0 km

在前面的示例中,longitude 和 latitude 值是使用对象的 s 作为成员名称来存储的。 finder 方法允许使用 or 组合来查询这些值。GEOADDidCirclePoint, Distancespring-doc.cn

不能将 and 与其他标准结合使用。nearwithin