What's the worst case time complexity in a log-structured merge tree for a simple search query (like querying a single WHERE
clause)?
Is it O(log N)? O(N*Log N)? Something else?
How about for a multiple query, like searching for multiple WHERE
clauses in a key-value database?
The wikipedia page on LSM trees is currently lacking this info.