Advertisement
corrosiontears

Melhorar Performance do Android

Oct 21st, 2013
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. Settings for best performance:
  2. Turn off apps (skype, browser, ...)
  3. In developer options set 'Background process limit' to 'At most, 4 processes'
  4. In Performance set 'I/O scheduler' to 'SIO'
  5. In Performance set in Processor 'CPU governor' to 'Smartassv2'
  6. In Performance set in Memory management 'zRam' to '10%'
  7.  
  8. VM Settings
  9.  
  10. The goal for virtual memory settings is to make latency lower for better responsive and experience.
  11.  
  12. I've set dirty settings to lower value, make it write back to disk faster for more free memory instead of keeping it in memory for a longer time and caused I/O botttleneck when flush a large dirty pages to disk.
  13.  
  14. Dirty ratio: 15
  15. Dirty background ratio: 3
  16. Dirty expire centisecs: 500
  17. Dirty writeback centisecs: 100
  18. Minfree kbytes: 4096
  19. Overcommit ratio: 50
  20. Swappiness: 0
  21. VFS cache pressure: 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement