You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently rocksdb just support prefix_extractor for cf.
But in our scenario we need different prefix_extractor for different iteration.
For example, we have following data
1_1_1
1_1_2
1_2_1
1_2_2
2_1_1
2_1_2
...
We need to scan data with prefix 1_1_ and at the same time, we also need to scan data with prefix 1_.
I would like to work on it and send the patch out later.
The text was updated successfully, but these errors were encountered:
Currently rocksdb just support prefix_extractor for cf.
But in our scenario we need different prefix_extractor for different iteration.
For example, we have following data
1_1_1
1_1_2
1_2_1
1_2_2
2_1_1
2_1_2
...
We need to scan data with prefix 1_1_ and at the same time, we also need to scan data with prefix 1_.
I would like to work on it and send the patch out later.
The text was updated successfully, but these errors were encountered: