Hi, Deal all:
I am evaluating in-memory h2 for my multi-thread simulation
application. (approximate 700 threads)
I created a database using:
jdbc:h2:mem:;MULTI_THREADED=1
After the connection is obtained, i keep the connection until the
entire simulation is finished (is it ok?)
conn = DriverManager.getConnection("jdbc:h2:mem:;MULTI_THREADED=1",
"sa", "");
during the execution, i wanna check the database's status by visiting
the page "http://localhost:8082" created by command:
java -cp h2-1.1.107.jar org.h2.tools.Server
However, it seems not working. What's up? Is it possible to monitor my
in-memory h2 status externally?
By the way, is the aforementioned setting ok for my scenario, anything
missing?
Thanks in advance!
Regards
ye
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/h2-database?hl=en
-~----------~----~----~----~------~----~------~--~---