0

Alfresco uses DBCP internally, and exposes DBCP parameters via its own parameter names.

For instance, db.pool.initial in Alfresco actually refers to initialSize in DBCP.

Most parameter equivalences can be guessed by comparing the Alfresco doc and the DBCP doc, but I am unsure for two of them:

What are the DBCP equivalents of db.pool.idle and db.pool.min?

Nicolas Raoul
  • 1,334
  • 7
  • 22
  • 43

1 Answers1

2

db.pool.idle corresponds to maxIdle

db.pool.min matches minIdle

You can look them up in ./alfresco/WEB-INF/classes/alfresco/core-services-context.xml

The same applies for various other parameters.

Andreas Steffan
  • 211
  • 2
  • 4