You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Manage group of entities per connection for schema creation process (= multi keyspaces)
* Remove useless isRequired property for new paramater entity_group_prefix_folder
* Fix unit tests for cassandra extension
* Fix unit test
* Add entity_managers configuration parameter under orm
* Add entity_managers orm config parameter to define mapping of entity directories per entityManager which uses a connection (keyspace)
* Replace slash with backslash slash for regexp of entity directory mappings
* Review regexp directory for schema creation process
* Add README section for entityManager
* Fix Checkstyles
* Review checkstyles
* Fix based on reviews
* Fix checkstyle
Copy file name to clipboardExpand all lines: README.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -182,6 +182,15 @@ Datacollector is available when the symfony profiler is enabled. The collector a
182
182
183
183
**NOTE :** The time reported in the data collector may not be the real execution time in case you use the async calls : `executeAsync` and `prepareAsync`
184
184
185
+
## EntityManager
186
+
187
+
EntityManager is linked to one connection, so one keyspace in Cassandra.
188
+
In the bundle, you can map some Entity folders to an entityManager to then create some tables (via the SchemaManager) a specific keyspace.
189
+
There is a configuration parameter under ``orm`` called ``entity_managers`` where you can describe each ``entity_manager``.
190
+
The entityManager config contains the linked connection and the entity mapping directories.
191
+
192
+
If the linked connection can't be found, will fallback to default connection
0 commit comments