C
C
Crunchor2019-11-28 23:24:55
Java
Crunchor, 2019-11-28 23:24:55

How much data can Hibernate handle?

There is a base on PostgreSQL, an application in Java. There are about 10 tables in the database, interconnected. Each table is filled with 10k to 500k rows every month.
How efficient is the use of Hibernate in this case, if you have to query the data for the current month and for the year as a whole very often?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
Dmtm, 2019-11-29
@Crunkor

what does Hibernate have to do with it? it's just an ORM, the same sql queries sit inside, precompilation of selects gives the same speed, performance rather depends on the cache of the postgress itself

M
mystifier, 2019-11-29
@mystifier

If you need to fill in such tables from other sources, then jdbc with batch insert (without hibernate), it is possible in several threads.
If select queries are complex enough, then I prefer to use stored procedures that return a cursor. And this cursor can already be processed through hibernate.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question