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
The relationships between Adapt models (components, blocks etc) is described using MongoDB's ObjectIDs (via _parentId). At the moment this requires that the parent exists before the child can be inserted.
If we instead used _friendlyId to describe these relationships then inserts could be done concurrently. This would speed up import and content copy (clone) by reducing DB calls and HTTP requests (if DB is accessed over a network). It would also make casual analysis of DB tables easier during development.
Feature description
The relationships between Adapt models (components, blocks etc) is described using MongoDB's ObjectIDs (via
_parentId
). At the moment this requires that the parent exists before the child can be inserted.If we instead used
_friendlyId
to describe these relationships then inserts could be done concurrently. This would speed up import and content copy (clone) by reducing DB calls and HTTP requests (if DB is accessed over a network). It would also make casual analysis of DB tables easier during development.N.B. would require #40
Can you work on this feature?
The text was updated successfully, but these errors were encountered: