Remember to commit your BDBWorker!
Por Jeff Kuo
If you are develop Java programs accessing the Java API of Ragic. I'm sure you've heard us reminding you that you must use this construct to make sure that the worker is certainly committed and closed after any operation.
BDBWorker worker=new BDBWorker(xxx);try{
...
...
}
finally{
worker.commit();
}
This is just another reminder, please remember to do so! Failing to do so will cause memory leak each time the worker is not committed and eventually your Ragic private server will run out of memory!
Categoría: Talking Ragic > Learn Ragic
¡Impulsado por Ragic! : La Gestión de Datos Que Sí Funciona.