top | item 41698828

(no title)

nikhilsimha | 1 year ago

So the writes are O(N) then - to keeps reads at O(1)?

discuss

order

ryzhyk|1 year ago

Both reads and writes are O(1) in time complexity. Writes additionally have the log(N) amortized cost of maintaining the LSM tree.

nikhilsimha|1 year ago

gotcha! thanks for the clarification