A new plugin has been integrated to enable full-text search capabilities with YDN-DB.
Although full text queries are now functioning properly, existing queries intended to retrieve a list of data are no longer operational. For instance:
db_mob_audit.from('OrgChildrenNodeInfo').where('IParentID', '=', ParentnodeID).done(
function (Orgresponse) {
}
);
To resolve this issue, the query was modified as follows:
db_mob_audit.values('OrgChildrenNodeInfo', 'IParentID', key_range, 9999).done(
function (Orgresponse) {
}
);
This modification works seamlessly on Chrome (using IndexedDB).
However, when accessed through Safari browser (-mysql), it continues to generate multiple sets of results.