Re: possible memory leak??

Поиск
Список
Период
Сортировка
Искать
От
Michael Paesold
Тема
Re: possible memory leak??
Дата
Msg-id
017101c28732$652281b0$4201a8c0@beeblebrox
Список
Дерево обсуждения
Re: DatabaseMetaData.getTables problem Barry Lind <blind@xythos.com>
Re: DatabaseMetaData.getTables problem Kris Jurka <books@ejurka.com>
Re: DatabaseMetaData.getTables problem snpe <snpe@snpe.co.yu>
Re: DatabaseMetaData.getTables problem Kris Jurka <books@ejurka.com>
Dave Cramer  wrote:

> Should the gc run before an OutOfMemoryException is thrown
>
> in other words are the jvm's smart enough to run the gc if they are out
> of memory?

Yes, the jvm should be smart enough to regain unused memory before throwing
an OutOfMemoryException. The global gc runs in the backround in defined
intervals, but more often in low memory situations, as far as I know.

It is possible to have "memory leaks" in java, but I don't see it in your
code. Such a "leak" could be created by adding all result sets to a vector
without ever removing it.

Does the overall memory consumption increase, even with System.gc() called
explicitly? Have you tried running it until the jvm needs more than maximum
allowed memory? (the limit can be set with command line arguments)

Regards,
Michael Paesold

В списке pgsql-jdbc по дате отправления
От: Daniel Serodio
Дата:
Сообщение: Re: JDBC driver problem ?
От: Mike Beachy
Дата:
Сообщение: Re: possible memory leak??
FAQ