Hi All,
I have enabled level1 pooling in dfc.properties and tested few scenarios to check whether the session is getting resued or not.
My testing goes like this...
First i create the session and release it and then try to create the session again using the same session manager and same user credentials, but i never feel that the session is getting reused.
I have checked the DCTM Session ID property in DA, each time the session is created, the DCTM Session ID is different. By this i came to know that the session is not getting reused.
Below is the piece of code i am using for testing...
for(int i=0;i<10;i++)
{
session=sMgr.getSession("docbasename");
sMgr.release(session);
}
dfc.properties:
dfc.session.pool.enable = true
dfc.session.pool.expiration_interval = 1
dfc.session.pool.mode = level1
dfc.session.max_count = 1000
Please let me know whether my testing is correct and am i checking the correct property, if not please let me know how to test this functionality...it is very urgent..waiting for ur replies..
Thanks,
KeenYen