I'm using grav to create a media library. I've written an image cache system, and grav is really fast, despite serving hundreds of heavy media pages (hundreds of images per page, many video, audio etc...)
Now I'm trying to implement a search, and I'm running into the same problems why I created the imagecache; media initialization crashes the site. When I use the simplesearch plugin, somewhere in the plugin a new Collection is created, and with such a huge amount of media, it simply crashes. (on normal page calls all media is served from cache)
Now my question is; would it be possible to create a collection of pages with only text info, and no media info? I guess this would ask for some kind of modification of the page object too? I don't know enough of Grav core yet to solve this. It would be a lot faster to search this kind of collection than the one we have now.
Any ideas on how to solve this are welcome.