I have a database with more then 10K products which i can not subdivide into different parts.
i followed this guide:
https://getkirby.com/docs/guide/virtual-pages/content-from-database
1/ When i want to preview the children it is very slow in the panel although everything comes out of database.
myproject/panel/pages/products
2/ I removed the pages in the products blueprint and create a simple search plugin with links to the detailpage like this:
myproject/panel/pages/products+product-a
But when i use this, it is still very slow to retreive the detailpage. It seems like Kirby is running through all the children() to find the page.
But it seems i still need the children in the parent model otherwise the page can not be found in the panel (my plan was to overwrite the content function in the product model).
Is there a way to solve this? Or is Kirby not suitable for this?
The problem is in the panel because in the front i can workaround by getting the content directly from the database.