ripaclub / sphinxsearch

Sphinx Search library provides SphinxQL indexing and searching features
BSD 2-Clause "Simplified" License
62 stars 10 forks source link

Handling Like #50

Open DSCmattb opened 7 years ago

DSCmattb commented 7 years ago

Looking to see if where->like() can be used like standard DB Sql can.

If so how would I go about doing this?

leogr commented 7 years ago

SphinxQL needs at least a MATCH predicate for searching queries.

However, even the LIKE predicate is supported by Zend\Db (and so this library allows to use it too) but it should not work as expected in classical SQL DB due to the SphinxSearch requirement, thus it's not an issue of this library.

Let me know If I properly answered your question

leogr commented 7 years ago

@DSCmattb any news?