Skip to content

Paradigm.ORM v2.6.3

Compare
Choose a tag to compare
@pabloordonez pabloordonez released this 30 Jun 20:42
· 19 commits to master since this release
  • Updated cassandra connector to cache active connections by connection string instead of disposing them. When working with multiple threads, the ORM used to create multiple connections, and dispose them after finalization.
    Disposing the active connection also disposed the internal cluster and session, producing unintended side effects inside the datastax driver: A lot of leaked references being captured and not collected by GC.
    With this new change, we expect to provide a better performance and memory footprint overall.
    If you need to clean all the static connections, you can still call to CqlConnectionManager.ClearConnections() but note that clearing the connections won't free everything, due to how the datastax driver caches internal pool objects.
  • Updated nuget dependencies.