Configuration Values:

Container has the following options

pool-size

This property sets the database connections pool size for the associated UserRepository.

Note

in some cases instead of default for this property setting for data-repo-pool-size is used if pool-size is not defined in userRepository. This depends on the repository implementation and the way it is initialized.

authRepository {
    default ()
      'pool-size' = 10
}

This is a global property that may be overridden by individual repository settings:

userRepository {
    default () {
      'pool-size' = 10
    }
    special-repo () {
      'pool-size' = 30
    }
}
cls

Defines the class used for repository connection. You can use this to specify specific drivers for different DB types.

Unless specified, the pool class will use the one included with Tigase. You may configure individual repositories in the same way. This replaces the former --auth-repo-pool property.

Note

File conversion will not remove and convert this property, it MUST BE DONE MANUALLY.

Available since: 8.0.0