Skip to content

1.0

Compare
Choose a tag to compare
@evgeniycheban evgeniycheban released this 30 Jul 20:45
· 15 commits to main since this release

The Spring Data approach to work with Reindexer database has been introduced in this release.

The 1.0 release includes:

  • A base repository interface: ReindexerRepository that contains CRUD and reindexer-specific methods.
  • Support for creating query methods like: Optional<TestItem> findByNameOrValue(String name, String value).
  • Support for creating native queries using @Query annotation like: @Query("SELECT * FROM items WHERE name = 'testName'").
  • Support for building query criteria using ReindexerRepository#query method that returns query builder for further customizations.