diff --git a/doc/source/devref/effective_neutron.rst b/doc/source/devref/effective_neutron.rst index bbe918189ec..13c9bd8300b 100644 --- a/doc/source/devref/effective_neutron.rst +++ b/doc/source/devref/effective_neutron.rst @@ -104,6 +104,10 @@ Document common pitfalls as well as good practices done during database developm transaction blocks, and the innermost block raises an error without proper rollback. Consider if `savepoints `_ can fit your use case. +* When designing data models that are related to each other, be careful to how + you model the relationships' loading `strategy `_. For instance a joined relationship can + be very efficient over others (some examples include `router gateways `_ + or `network availability zones `_). System development ~~~~~~~~~~~~~~~~~~