-
Can you please verify if my undersanding of
If those assumptions are correct it may mean that performance may be degenerated with lot of relation for one object. Are there any plans to overcome that? Is it real problem? Are there any plans to introduce caching or resolve subjects on db (not locally after fetch from db) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
First of all sorry for the late response. Performance is really a key measure here, so it is always very important to find the points where we hit performance problems. There are already various ideas and plans for optimization, but we don't want to apply that prematurely. It would be awesome if you performance-test your specific data model and tell us at which point optimization is required. Now to the current state. Your points are pretty accurate. Before #638 it would not be possible to do some things in the database, but once that is merged we can add the subject id check to the SQL query. But that will be done incrementally, and if you have specific problems or ideas, please open issues so we can discuss it. |
Beta Was this translation helpful? Give feedback.
First of all sorry for the late response.
Performance is really a key measure here, so it is always very important to find the points where we hit performance problems. There are already various ideas and plans for optimization, but we don't want to apply that prematurely. It would be awesome if you performance-test your specific data model and tell us at which point optimization is required.
Now to the current state. Your points are pretty accurate. Before #638 it would not be possible to do some things in the database, but once that is merged we can add the subject id check to the SQL query. But that will be done incrementally, and if you have specific problems or ideas, please open iss…