您的位置:首页 > Web前端

cache buffers LRU chain latch等待事件

2011-08-08 17:13 405 查看
This latch is needed when user processes try to scan the LRU (least recently used) chain containing blocks in the buffer cache. This latch must be acquired before the block can be inserted into (when the block is read in from the disk) or taken out of the LRU chain (when the block is written down to the disk).

Solutions

Consider implementing multiple buffer pools to reduce contention on this latch.

Increase the number of LRU latches with the parameter DB_BLOCK_LRU_LATCHES. Generally the default value works.

Reduce data blocks visited by a query and thereby reduce LRU latch requests in the buffer pool by tuning the SQL.

本文出自 “Ask Maclean Liu Oracle” 博客,请务必保留此出处http://maclean.blog.51cto.com/2923249/1277884
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: