In the FoundationDB C API, how can I get all keys with a matching prefix? Specifically, using fdb_transaction_get_range
and a key selector.
For example, if I have a database similar to the following:
'a' is 'value'
'b' is 'value'
'ba' is 'value'
'babc' is 'value'
'bb' is 'value'
'c' is 'value'
How could I get all keys beginning with ba
? I’ve found key selectors to be confusing and would greatly appreciate any help!