Skip to content

Store

In the end, the events have to be saved somewhere. The library is based on doctrine dbal and offers two different store strategies.

Info

You can find out more about stores in the library documentation. This documentation is limited to bundle integration.

Store types

We offer two store strategies that you can choose as you like.

Single Table Store

With the single_table everything is saved in one table.

patchlevel_event_sourcing:
    store:
        type: single_table

Note

You can switch between strategies using the pipeline.

Multi Table Store

With the multi_table a separate table is created for each aggregate type. In addition, a meta table is created by referencing all events in the correct order.

patchlevel_event_sourcing:
    store:
        type: multi_table

Note

You can switch between strategies using the pipeline.

Manage database and schema

The bundle provides you with a few commands with which you can create and delete the database. You can also use it to create, edit and delete the schema.

Create and drop database

bin/console event-sourcing:database:create
bin/console event-sourcing:database:drop

Create, update and drop schema

bin/console event-sourcing:schema:create
bin/console event-sourcing:schema:udapte
bin/console event-sourcing:schema:drop

Use doctrine connection

If you have installed the doctrine bundle, you can also define the connection via doctrine and then use it in the store.

doctrine:
    dbal:
        connections:
            eventstore:
                url: '%env(EVENTSTORE_URL)%'

patchlevel_event_sourcing:
    connection:
        service: doctrine.dbal.eventstore_connection

Warning

You should avoid that this connection or database is used by other tools or libraries. Create for e.g. doctrine orm its own database and connection.

Note

You can find out more about the dbal configuration here.

Migration

You can also manage your schema with doctrine migrations.

In order to be able to use doctrine/migrations, you have to install the associated package.

composer require doctrine/migrations

With this package, further commands are available such as. for creating and executing migrations.

bin/console event-sourcing:migration:diff
bin/console event-sourcing:migration:migrate

You can also change the namespace and the folder in the configuration.

patchlevel_event_sourcing:
    migration:
        namespace: EventSourcingMigrations
        path: "%kernel.project_dir%/migrations"