문제

The h2 database can be run both as a file-database mode and client-server mode. Now, I want to know that what exactly are the advantages of running h2 in client-server mode? Is there any performance difference or something like that?

도움이 되었습니까?

해결책

The main advantage of a client-server architecture over the file-database architecture is that it is possible for multiple users to share the same database at the same time. It is also possible to connect to your database via a network, without the need to create a file share.

There is a performance hit as can be seen in this comparison table: http://h2database.com/html/performance.html

More information about client-server architecture can be found here: http://en.wikipedia.org/wiki/Client-Server

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top