Using elasticsearch in sailsJS framework. Index/Reindex, Search
$http.get('/api/elastic/reindex')
.then(() => {
// ...
});
$http.get('/api/elastic/search?index=music&where=' +
JSON.stringify({
or: [
{ title: { contains: 'linkin' } },
{ author: { contains: 'linkin' } }
]
}) + '&limit=30')
.then(() => {
//...
});```