The NoSQL operator 'search' may be used to execute one of two fast access methods: binary or hashtable search.
These methods are useful when the key field values of a number of rows in an existing, large table is known in advance, a common situation.
One example of updating a table using these methods is as follows. First, 'search' is used to quickly obtain a new, small table consisting of the desired rows from the existing, large table. Then 'edittable' is used to update the data in the new table, including generating new rows, changing some rows, and marking certain rows for deletion, if desired. The next stage would be to use 'update' to combine the new and old tables into a new, large table, which will still be in sort order (both the old table and the new, small one will still exist for backup and/or journaling purposes). Note that the last step could be done in the background.
More explanations on handling big tables can be found in section Big tables.