fdb-record-layer
fdb-record-layer copied to clipboard
A record-oriented store built on FoundationDB
It is not thread-safe otherwise. Note that I believe that `TextCollatorRegistryJRE` is okay: `Collator.getInstance` returns a clone and both `compare` and `getCollationKey` are `synchronized`.
`FDBInQueryTest.testNotInQueryParameterBad` has a filter ``` Query.not(Query.field("num_value_3_indexed").in("valueThrees")) ``` giving a plan ``` Scan() | [MySimpleRecord] | Not(num_value_3_indexed IN $valueThrees) ``` If we make this slightly more complicated, so that there is...
It would be good to have some tests of Lucene where there are multiple different stores being used at the same time to make sure they don't interact in weird...
Support users who wish to use a "lazy delete" - which clears the record in foreground, then let a background index scrubbing task clear the dangling index entries. This requires:...
While working on #2748 I noticed that the ordering that is computed and reasoned about in `AbstractDataAccessRule` is the sort order that is achieved when realized and compensated matches are...