You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.
JMH is a good idea.
To give some feedback, in one of my first implementation/ modification on my fork. I integrated the spring-data-orientdb connetor to a spring boot application with spring MVC.
I was associating a request with @transactional. When I test my tool project, I had the surprise to receive errors past the maximum number of allowed connections to the pool.
This problem could have been detected with a JUnit/TestNG test performing something like :
Executor ex = Executors.newCachedThreadPool(BIG_NUMBER_THREADS);
for (int i ; i =0 i < BIG_NUMBER_THREADS) {
ex.submit(new NewTransactionCallable())
}
ex.shutdown();
One basic test required is a functional/performance tests with * many thread acquiring/releasing a connection * with the orientdb factory.
The text was updated successfully, but these errors were encountered: