Little confused on files the root of a folder and searches #5020
-
|
I am new to manyfold and still trying to figure it out, so bear with me As a POC
Please help |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
|
OK, that can be a bit confusing, as it makes some assumptions which may not hold true for your current setup. Manyfold assumes that a "model" is a folder that contains indexable files, inside the library folder. So, you might have: That would be indexed as two models, each with one file. if you've got nesting like this: Manyfold will create two models, one for Because it would mean that everything was nested inside another model, the library root isn't considered as a possible "model" folder; files in that are ignored, as Manyfold doesn't really know how to split them up logically. That's something that maybe we could improve in future, at least to add some warnings for. Silently ignoring them is not the best solution, as I'm sure you can agree. I've added a feature ticket for it to remind me: #5022. As for filename search: in your example, you probably have a model called "dog", which will come up in search, but to match "tail", you'd need to search for |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for the quick response and excellent explanation. Keep up the good work!! |
Beta Was this translation helpful? Give feedback.
-
|
Thanks again, I was able to successfully get Manyfold working with our libraries on self-hosted Kubernetes after some tweaking using lscr.io/linuxserver/manyfold:latest. Do you have a place I give back to the community? Took me a while to tweak 4Gigs of data and 1200 files without crashing the server. Hoping to save the next person some time. |
Beta Was this translation helpful? Give feedback.
OK, that can be a bit confusing, as it makes some assumptions which may not hold true for your current setup.
Manyfold assumes that a "model" is a folder that contains indexable files, inside the library folder. So, you might have:
That would be indexed as two models, each with one file.
if you've got nesting like this:
Manyfold will create two models, one for
exampleand one formodel_one, then give you warnings and options to easily merge them into a single model if that's what you want.Because it would mean that everything was nested inside another model, the lib…