I'm using OrientDB v2.2.16 and the C# driver v0.1.12.0. I cannot find any documentation on how to create a connection pool with the new iteration of this driver. The ODatabase constructor has a connectionPool parameter:
ODatabase db=new ODatabase("localhost", 2424, "testDb", ODatabaseType.Graph, "USER", "PASSWORD", "Pool");
But there's no way to create "Pool". The old version of the driver contains a CreateDatabasePool function in the OClient class:
OClient.CreateDatabasePool("localhost", 2424, "testDb", ODatabaseType.Graph, "USER", "PASSWORD", 10, "Pool");
The new one does not. Does the pool spontaneously create itself upon the first call to the ODatabase constructor? If so, how do I control parameters such as pool size?