table.indexCreate(indexName[, indexFunction]) → object
Create a new secondary index on a table. Secondary indexes improve the speed of many read queries at the slight cost of increased storage space and decreased write performance. For more information about secondary indexes, read the article “Using secondary indexes in RethinkDB.”
RethinkDB supports different types of secondary indexes:
multi
optArg argument is true
.geo
optArg is true
.The indexFunction
can be an anonymous function or a binary representation obtained from the function
field of indexStatus. The function must be deterministic, and so cannot use a subquery or the r.js
command.
If successful, createIndex
will return an object of the form {"created":1}
. If an index by that name already exists on the table, a ReqlRuntimeError
will be thrown.
Note that an index may not be immediately available after creation. If your application needs to use indexes immediately after creation, use the indexWait command to ensure the indexes are ready before use.
Example: Create a simple index based on the field postId
.
r.table("comments").indexCreate("postId").run(conn);
Example: Create a simple index based on the nested field author > name
.
r.table("comments").indexCreate("author_name", row -> row.g("author").g("name")) .run(conn);
Example: Create a geospatial index based on the field location
.
r.table("places").indexCreate("location").optArg("geo", true).run(conn);
A geospatial index field should contain only geometry objects. It will work with geometry ReQL terms (getIntersecting and getNearest) as well as index-specific terms (indexStatus, indexWait, indexDrop and indexList). Using terms that rely on non-geometric ordering such as getAll, orderBy and between will result in an error.
Example: Create a compound index based on the fields postId
and date
.
r.table("comments").indexCreate("postAndDate", row -> r.array(row.g("postId"), row.g("date")) ).run(conn);
Example: Create a multi index based on the field authors
.
r.table("posts").indexCreate("authors").optArg("multi", true).run(conn);
Example: Create a geospatial multi index based on the field towers
.
r.table("networks").indexCreate("towers") .optArg("geo", true).optArg("multi", true).run(conn);
Example: Create an index based on an arbitrary expression.
r.table("posts").indexCreate("authors", doc -> r.branch( doc.hasFields("updatedAt"), doc.g("updatedAt"), doc.g("createdAt") )).run(conn);
Example: Create a new secondary index based on an existing one.
byte[] index = r.table("posts").indexStatus("authors").nth(0).g("function") .run(conn); r.table("newPosts").indexCreate("authors", index).run(conn);
Example: Rebuild an outdated secondary index on a table.
byte[] oldIndex = r.table("posts") .indexStatus("oldIndex").nth(0).g("function").run(conn); r.table("posts").indexCreate("newIndex", oldIndex).run(conn); r.table("posts").indexWait("newIndex").run(conn); r.table("posts").indexRename("newIndex", "oldIndex") .optArg("overwrite", true).run(conn);
Couldn't find what you were looking for?
© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/java/index_create/