File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ across the cluster.
1515** Notes:**
1616
1717* A space should have a format.
18- * All non-TREE indexes will be ignored.
1918* ` bucket_id ` is computed as ` vshard.router.bucket_id_mpcrc32(key) ` ,
2019 where ` key ` is the primary key value.
2120
@@ -132,6 +131,14 @@ crud.delete('customers', 1)
132131
133132### Select
134133
134+ ` CRUD ` performs select across a distributed space with a conditions.
135+ Condition can use field names, field numbers or index name as an operand.
136+ The first condition that uses index name or matches first parts of any index is
137+ used to select an index to iterate over.
138+ If no such index found, the primary index is used.
139+
140+ ** Note** , that non-TREE indexes are ignored!
141+
135142``` lua
136143local objects , err = crud .select (space_name , conditions , opts )
137144```
You can’t perform that action at this time.
0 commit comments