Issue 168: Excessive hard disk activity every 10-20 minutes
http://code.google.com/p/chromium/issues/detail?id=168

Comment #15 by didier.06:
So these data are stored in a SQLite database. My advice would be to:

  - check you have the proper indexes, and they are actually used by the  
queries
    you have prepared (especially if you use the 'like' clause).

  - try to minimize the number of transactions. SQLite performs poorly when  
a lot of
    small transactions are committed. It is much more efficient to use one  
big
    transaction whenever possible.

  - try to increase the buffer cache, in order to minimize the I/Os.  
Consider making
    the SQLite configuration customizable. See http://sqlite.org/pragma.html  
for more
    information.

Only my 0.2 euros ...
Thanks.





-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Chromium-bugs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-bugs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to