View RSS Feed

Recent Blogs Posts

  1. High Load Web Servlets Performance Tips

    by , 02-18-2012 at 03:19 PM
    • Do not redirect request from the servlet. Always send requests directly from static resources to the web server using URL.
    • Use different web servers for dynamic and static content.
    • Use cache to store content.
    • Manage your RAM to cache content.
    • Use multiple JVMs to balance the load.
    • Limit the number of file descriptors.
    • Do not avoid logging to improve performance. It is more important.
    • Always monitor resources.