You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting no results or returned value even errors. here's my code:
const SphinxClient = require('sphinxapi'),util = ('util'),assert = ('assert');
var cl = new SphinxClient();
cl.SetServer('localhost', 9300);
var q = "SELECT *,weight() as w from myindex where match('@find *test*') ORDER BY w DESC";
cl.Query(q, 'myindex', function(err, result){
console.log(result);
});
I am getting no results or returned value even errors. here's my code:
can someone help?