Implement a Trie index for wide row retrieval to implement partial [string] matching in memory. In essence, this is an enhancement on top of wide-row range queries.
A range of documents is retrieved.
The range is loaded into the Trie index.
The Trie index is used to retrieve partial matches.
(Optional) The Trie is cached for following queries (e.g. pagination, additional filtering).
Implement a Trie index for wide row retrieval to implement partial [string] matching in memory. In essence, this is an enhancement on top of wide-row range queries.