Closed mikecaulley closed 3 years ago
This will allow libraries like https://github.com/aerospike-community/spring-data-aerospike to create repository functions that query by UUID - it uses this client's Value.java class to generate the query statement
example:
public interface PersonRepository extends CrudRepository<Person, UUID> { List<Person> findByIdAndMembershipStatus(UUID id, MembershipStatus status ); }
Your pull request has been accepted and will appear in the next client release.
Java client 5.0.1 released: https://download.aerospike.com/download/client/java/notes.html#5.1.0
Summary
This will allow libraries like https://github.com/aerospike-community/spring-data-aerospike to create repository functions that query by UUID - it uses this client's Value.java class to generate the query statement
example: