Class and Description |
---|
com.arangodb.springframework.config.AbstractArangoConfiguration
ArangoConfiguration provides default methods and can be
implemented directly without the need of this class. |
Annotation Type and Description |
---|
com.arangodb.springframework.annotation.HashIndex
use
PersistentIndex instead. Since ArangoDB 3.7 a hash index is an alias for a persistent index. |
com.arangodb.springframework.annotation.HashIndexed
use
PersistentIndexed instead. Since ArangoDB 3.7 a hash index is an alias for a persistent index. |
com.arangodb.springframework.annotation.HashIndexes
use
PersistentIndexes instead.
Since ArangoDB 3.7 a hash index is an alias for a persistent index. |
com.arangodb.springframework.annotation.SkiplistIndex
use
PersistentIndex instead. Since ArangoDB 3.7 a skiplist index is an alias for a persistent index. |
com.arangodb.springframework.annotation.SkiplistIndexed
use
PersistentIndexed instead. Since ArangoDB 3.7 a skiplist index is an alias for a persistent index. |
com.arangodb.springframework.annotation.SkiplistIndexes
use
PersistentIndexes instead.
Since ArangoDB 3.7 a hash index is an alias for a persistent index. |
Method and Description |
---|
com.arangodb.springframework.core.CollectionOperations.ensureHashIndex(Iterable<String>, HashIndexOptions)
use
CollectionOperations.ensurePersistentIndex(Iterable, PersistentIndexOptions) instead.
Since ArangoDB 3.7 a hash index is an alias for a persistent index. |
com.arangodb.springframework.core.CollectionOperations.ensureSkiplistIndex(Iterable<String>, SkiplistIndexOptions)
use
CollectionOperations.ensurePersistentIndex(Iterable, PersistentIndexOptions) instead.
Since ArangoDB 3.7 a skiplist index is an alias for a persistent index. |
com.arangodb.springframework.core.ArangoOperations.upsert(Iterable<T>, ArangoOperations.UpsertStrategy)
use
#repsert(Iterable) instead |
com.arangodb.springframework.core.ArangoOperations.upsert(T, ArangoOperations.UpsertStrategy)
use
ArangoOperations.repsert(Object) instead |
Copyright © 2017–2022 ArangoDB GmbH. All rights reserved.