1

1 cmの完全なアーキテクチャを変更できない場合、MongoDB/NormなどのNoSQLソリューションで左結合を保持するための最良のソリューションは何ですか。経験、サンプル、コスト。

ありがとう。

4

1 に答える 1

0

I can suggest two ways:

  1. Create big documents, i mean combine two, three, ten entites into one. So if you, for example, have reference one to many and you know that 'many' not more than 100 for most cases you can combine these entities into one.
  2. Create 'denormalized' documents with data that you need at problem places. So instead of any joins load only one document.
于 2010-12-28T06:20:25.547 に答える