public interface IgniteRepository<T,ID extends Serializable> extends org.springframework.data.repository.CrudRepository<T,ID>
CrudRepository
.Modifier and Type | Method and Description |
---|---|
void |
deleteAll(Iterable<ID> ids)
Deletes all the entities for the provided ids.
|
<S extends T> |
save(ID key,
S entity)
Saves a given entity using provided key.
|
<S extends T> |
save(Map<ID,S> entities)
Saves all given keys and entities combinations.
|
<S extends T> S save(ID key, S entity)
CrudRepository.save(Object)
that generates
IDs (keys) that are not unique cluster wide.S
- Entity type.key
- Entity's key.entity
- Entity to save.<S extends T> Iterable<S> save(Map<ID,S> entities)
CrudRepository#save(Iterable)
that generates
IDs (keys) that are not unique cluster wide.S
- type of entities.entities
- Map of key-entities pairs to save.
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.7.2 Release Date : February 6 2019