From 200147861c892156b2656af6a6f2cde26e24df98 Mon Sep 17 00:00:00 2001 From: agrgr Date: Tue, 21 Nov 2023 14:31:56 +0200 Subject: [PATCH] rephrase --- src/main/asciidoc/reference/template.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/asciidoc/reference/template.adoc b/src/main/asciidoc/reference/template.adoc index 720ee2faa..c532dbe71 100644 --- a/src/main/asciidoc/reference/template.adoc +++ b/src/main/asciidoc/reference/template.adoc @@ -31,10 +31,10 @@ For CAS updates `save` operation must be used. == Methods for interacting with database -`AerospikeTemplate` provides operations for interacting with the database (`exists`, `find`, `insert`, `update` etc.) as well as basic operations with indexes: `createIndex`, `deleteIndex`, `indexExists`. +`AerospikeOperations` interface provides operations for interacting with the database (`exists`, `find`, `insert`, `update` etc.) as well as basic operations with indexes: `createIndex`, `deleteIndex`, `indexExists`. The names of operations are typically self-descriptive. -For reading from DB you can use `findById` or `findByIds` operations, to delete documents use `delete` methods etc. +To read from Aerospike you can use `findById`, `findByIds` and `find` methods, to delete - `delete` methods, and so on. [source,java] ----