Repository configuration¶
You can define several Repositories within a single application. However, you can only use one per site.
Repository connection¶
Using default values¶
To use the default Repository connection, you do not need to specify its details:
1 2 3 4 5 6 7 |
|
Legacy storage engine
Legacy storage engine is the default storage engine for the Repository.
It uses Doctrine DBAL (Database Abstraction Layer). Database settings are supplied by DoctrineBundle. As such, you can refer to DoctrineBundle's documentation.
If no Repository is specified for a SiteAccess or SiteAccess group,
the first Repository defined under ibexa.repositories
will be used:
1 2 3 4 5 6 7 8 |
|
Multisite URI matching with multi-Repository setup¶
You can use only one Repository (database) per domain. This does not prohibit using different Repositories on different subdomains. However, when using URI matching for multisite setup, all SiteAccesses sharing domain also need to share Repository. For example:
ibexa.co
domain can useibexa_repo
doc.ibexa.co
domain can usedoc_repo
But the following configuration would be invalid:
ibexa.co
domain can useibexa_repo
ibexa.co/doc
cannot usedoc_repo
, as it is under the same domain.
Invalid configuration causes problems for different parts of the system,
for example back-end UI, REST interface and other non-SiteAccess-aware Symfony routes
such as /_fos_user_context_hash
used by HTTP cache.
Entity manager¶
If you use the Doctrine entity manager, you are unable to connect different SiteAccesses to different databases.
To have this possibility, you need to use the SiteAccess-aware entity manager: ibexa.doctrine.orm.entity_manager
.
To inject your entities into the SiteAccess-aware entity manager, use the following configuration:
1 2 3 4 5 6 7 8 |
|
Refer to DoctrineBundle documentation for more information.
Note
In contrast with DoctrineBundle, when using the SiteAccess-aware entity manager you need to explicitly set all options:
dir
(it still accepts relative path in case of bundles), prefix
, type
, and is_bundle
.
Defining custom connection¶
You can also explicitly define a custom Repository connection:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
|
1 2 3 |
|
Field groups configuration¶
Field groups, used in content and content type editing, can be configured under the repositories
key.
Values entered there are Field group identifiers:
1 2 3 4 5 |
|
These identifiers can be given human-readable values and can be translated. Those values are used when editing content types.
The translation domain isĀ ibexa_fields_groups
.
This example in translations/ibexa_fields_groups.en.yaml
defines English names for Field groups:
1 2 3 |
|
Limit of archived content versions¶
default_version_archive_limit
controls the number of archived versions per content item that are stored in the Repository.
By default it is set to 5. This setting is configured in the following way (typically in ibexa.yaml
):
1 2 3 4 5 |
|
This limit is enforced on publishing a new version and only covers archived versions, not drafts.
Tip
Don't set default_version_archive_limit
too high.
In Legacy storage engine you will see performance degradation if you store too many versions.
The default value of 5 is the recommended value, but the less content you have overall,
the more you can increase this to, for instance, 25 or even 50.
Removing versions on publication¶
With remove_archived_versions_on_publish
setting, you can control whether versions that exceed the limit are deleted when you publish a new version.
1 2 3 4 5 |
|
remove_archived_versions_on_publish
is set to true
by default.
Set it to false
if you have multiple older versions of content and need to avoid performance drops when publishing.
When you set the value to false
, run ibexa:content:cleanup-versions
periodically
to make sure that content item versions that exceed the limit are removed.
Removing old versions¶
You can use the ibexa:content:cleanup-versions
command to remove old content versions.
The command takes the following optional parameters:
status
ort
- status of versions to remove:draft
,archived
orall
keep
ork
- number of versions to keepuser
oru
- the User that the command will be performed as. The User must have thecontent/remove
,content/read
andcontent/versionread
Policies. By default theadministrator
user is applied.excluded-content-types
- exclude versions of one or multiple content types from the cleanup procedure; separate multiple content types identifiers with the comma.
ibexa:content:cleanup-versions --status <status name> --keep <number of versions> --user <user name> --excluded-content-types article,blog_post
For example, the following command removes archived versions as user admin
, but leaves the 5 most recent versions:
ibexa:content:cleanup-versions --status archived --keep 5 --user administrator
User identifiers¶
ibexa_default_settings.yaml
contains two settings that indicate which content types are treated like users and user groups:
1 2 3 4 5 |
|
You can override these settings if you have other content types that should be treated as users/user groups in the Back Office. When viewing such Content in the Back Office you will be able to see e.g. the assigned Policies.
Top-level Locations¶
You can change the default path for top-level Locations such as Content or Media in the Back Office, e.g.:
1 2 3 4 5 6 |
|
Content Scheduler snapshots¶
Content Scheduler snapshots speed up the rendering of Content Scheduler blocks and reduce the space used in the database. By default, five snapshots are stored, but you can modify this number with the following configuration, depending on the complexity of the Content Scheduler blocks:
1 2 |
|
Repository-aware configuration¶
In your custom development, you can create Repository-aware configuration settings.
This enables you to use different settings for different Repositories.
SiteAccess-aware configuration
If you need to use different settings per SiteAccess, not per Repository, see SiteAccess-aware configuration.
To do this, create a parser that implements Ibexa\Bundle\Core\DependencyInjection\Configuration\RepositoryConfigParserInterface
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
You need to register this configuration extension in the following way:
1 2 3 4 5 6 7 8 9 10 11 |
|
To access the configuration settings, use the Ibexa\Bundle\Core\ApiLoader\RepositoryConfigurationProvider::getRepositoryConfig
method:
1 |
|