A Brief On Elastic Search
The query shown uses ILIKE '%laptop%' to search inside text fields:
SELECT * FROM products
WHERE name ILIKE '%laptop%'
OR description ILIKE '%laptop%';
While this works for small datasets, it becomes
backendtheory.hashnode.dev4 min read