Here is the mysql query which i am using:
select * from `jobs` where MATCH(jobs.name,jobs.number,jobs.alt_id) AGAINST('*keyword*' IN BOOLEAN MODE) and company_id = 1
This query is taking around 2 seconds to execute but if i run it without company_id clause then it gives result within some milliseconds, after some investigation i came to know that my company_id index is not working if i run it along with full text search index.