-
Methods Method Description org.springframework.data.aerospike.core.AerospikeOperations.indexExists(String) org.springframework.data.aerospike.repository.AerospikeRepository.indexExists(String) This operation is deprecated due to complications that are required for guaranteed index existence response.If you need to conditionally create index — replace this method (indexExists) with
AerospikeRepository.createIndex(java.lang.Class<E>, java.lang.String, java.lang.String, com.aerospike.client.query.IndexType)
and catchIndexAlreadyExistsException
.More information can be found at: https://github.com/aerospike/aerospike-client-java/pull/149
-
Constructors Constructor Description org.springframework.data.aerospike.convert.AerospikeWriteData(Key, Collection<Bin>, int)
If you need to conditionally create index — replace this method (indexExists) with
AerospikeOperations.createIndex(java.lang.Class<T>, java.lang.String, java.lang.String, com.aerospike.client.query.IndexType)
and catchIndexAlreadyExistsException
.More information can be found at: https://github.com/aerospike/aerospike-client-java/pull/149