如果所有数据都在缓存中,那么只需从磁盘读取一次数据;毕竟,所有的请求都可以用内存速度从缓存中得到满足。
If all the data fits in the cache, then the data is read from disk only once; after that, all requests are satisfied from the cache at memory speed.
因此,write - behind缓存在访问所有写入数据以及所有缓存命中读取时都能提供内存速度,而且还有一些其他好处,我们将在下文介绍。
Thus, a write-behind cache gives you memory speed for accessing data on all writes, and for all cache-hit reads, and has other benefits that you will see later.
因此,write - behind缓存在访问所有写入数据以及所有缓存命中读取时都能提供内存速度,而且还有一些其他好处,我们将在下文介绍。
Thus, a write-behind cache gives you memory speed for accessing data on all writes, and for all cache-hit reads, and has other benefits that you will see later.
应用推荐