Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

GodziLaravel's avatar

search engine

Hello , I want to create a search engine (indexing some field from several tables) Is there any solution except Elastic search and other drivers because I have just a simple shared hosting . thanks

0 likes
2 replies
hollyit's avatar

There's a MySQL driver for scout, which uses MySQL's full text indexing:

https://github.com/YABhq/laravel-scout-mysql-driver

One warning on shared hosting. Doing searches on a database can quickly become resource intensive. If it does that too much, then don't be surprised when you get a notice from your hosting provider about having to upgrade or find a new provider. Best thing to do is put some kind of protection on any public facing search so that people can't abuse it. Something like Captcha or throttling.

Please or to participate in this conversation.