High concurrency and high response resolution in Java

Source: Internet
Author: User

A business with a low concurrency and a long task execution time should be differentiated:

If the business time is concentrated on I/O operations, that is I/O intensive tasks, because I/O operations do not occupy the CPU, so do not let all the CPU idle, you can increase the number of threads in the thread pool, so that the CPU processing more business.

If the business time is concentrated on the computation operations, that is, computationally intensive tasks, this is no way, and ①, the thread pool in the number of threads set less, reduce the thread context switch.

③ concurrency is high, business execution time is long, the key to solve this type of task is not in the thread pool but in the design of the overall architecture, to see if some of these business data can do cache is the first step, add the server is the second step, as to the thread pool settings, set reference ②.

Finally, the problem of long business execution may also need to be analyzed to see if the task can be split and decoupled using middleware.

High concurrency and high response resolution in Java

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.