Problems with leveldb (1)

write amplification

The process of a record is:
write log -> write to level0
and each key needs to be read and written again when writing to the next level, resulting in write amplification.

read amplification

The reading process can reduce the actual read data to close to 1 through bloomfilter.

Supongo que te gusta

Origin blog.csdn.net/weixin_41523437/article/details/120974372
Recomendado
Clasificación