How does JPA handle single request and 1000 requests for the same data from database?
Is there any change in accessing the speed of data if 1000 request same data at a time?
How it handles single request and multip开发者_如何学编程le requests if all request access the same data from database?
Within in a typical transaction manager configuration you have an own transaction created for each request. The concurrency is then being handled by your database.
For more information about transaction handling take a look at the posts of this question.
精彩评论