Database search via remote

Joschi

New member
Hello,

I am currently in the process of creating a small remote control for RadioBOSS. One challenge is to search the databases from the outside.
So far you have to search in each database separately, because you have to specify the name of the database with the request.
Is it perhaps possible to search in all databases at the same time?
If not, can this option be added in a future version?
So far
Code:
http://${IP}:${PORT}/?pass=${PASS}&action=library&filename=${DATABASE_NAME}
has to be called.
It would be desirable if the following could work:
Code:
http://${IP}:${PORT}/?pass=${PASS}&action=library&filename=*
Simply an asterisk as a placeholder to load all databases simultaneously.

Kind regards
Joschi
 
One possible solution for this would be to create a library that will include all tracks that you have, and search it. Libraries are cheap as they only hold references, not the actual data.
 
A "remote" database just for this purpose would of course be the simplest option. Thanks for the tip.
 
Back
Top