I'm developing app and I'm using the provided ORM functionality. The problem is with following tables:
Table: pdm_data
Table: change_request
Users can customize datasheet that is visible to them, eg. they can save filters (eg. change_request.obj_id=34 AND pdm_data.state = 6) on columns which then are translated to query realtime with ORM. The querying with ORM is really slow as the table pdm_data is large. The largest problem seems to be in ORM: even if the query itself is relatively fast model hydration etc. takes many seconds. Ideal solution would be to cache results from pdm_data table as it is rather static.
It looks like you're new here. If you want to get involved, click one of these buttons!