Find returns an iterator positioned before the first key/value pair whose key is 'greater than or equal to' the given key. There may be no such pair, in which case the iterator will return false on Next. The optional end value specifies the exclusive upper bound. If the empty string, the iterator r
(start, end string)
| 66 | // error-iterator will yield no key/value pairs and closing that iterator |
| 67 | // will return that error. |
| 68 | Find(start, end string) Iterator |
| 69 | |
| 70 | // Close is a polite way for the server to shut down the storage. |
| 71 | // Implementations should never lose data after a Set, Delete, |
no outgoing calls