Y
Hacker News
new
|
ask
|
show
|
jobs
by
nikhilsimha
628 days ago
So the writes are O(N) then - to keeps reads at O(1)?
1 comments
ryzhyk
628 days ago
Both reads and writes are O(1) in time complexity. Writes additionally have the log(N) amortized cost of maintaining the LSM tree.
link
nikhilsimha
628 days ago
gotcha! thanks for the clarification
link