Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8358155
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:42:36+00:00 2026-06-09T10:42:36+00:00

Is it possible to exclude certain keywords from an empty query through Sphinx? What

  • 0

Is it possible to exclude certain keywords from an empty query through Sphinx?

What I had in mind is to use the Extended2 match mode, and in order to exclude keywords, I’ll be using the - or ! operator. I only need to fetch data through Sphinx without using any query (except for the exclusion operators).

In Sphinx, I fetch data using the following method:

$data = $sphinx->query('');

This query returns data which doesn’t have to match anything (it means it’ll return all data, and of course limited to the query limit). The problem is, if I add a keyword with the ! or – operator, it doesn’t return anything. For instance:

$data = $sphinx->query('-google');

$data is returned as false

Maybe there is another method for this to work. Please help.
Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T10:42:37+00:00Added an answer on June 9, 2026 at 10:42 am

    Sphinx doesnt like negation only queries. If you check GetLastError()/GetLastWarning() it will explicitly say so.

    The main reason, is it can’t efficently use its index. Sphinx is based on the concept of inverted indexes. So to run this query, it needs to fetch a list of every document, then remove the ones matching the keyword.

    But you make it work. Just need to give sphinx a keyword that will be in every single document. Then can just do

    $data = $sphinx->query('popularword -google');
    

    If you dont have a word taht will be every document, just add a fake one 🙂

    sql_query = SELECT id, '__ALL__' as dummy, title .......
    

    can then just do

    $data = $sphinx->query('__ALL__ -google');
    

    As the word will be on every document.

    Dont expect the query to be very fast.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to exclude certain fields from being included in the json string?
Possible Duplicate: How do I use jQuery's form.serialize but exclude empty fields I need
Is it possible to exclude certain functions or lines of code from the gcov
Is it possible to exclude certain subviews in a UITableViewCell from being highlighted or
Is it possible to exclude specific files (*.ai, *.psd) when pushing to certain repositories
is it possible to exclude single sortbale items from being dropped on another list?
Is it possible to exclude specific files or folders from Build Deployment Package function
Is it possible to disable a certain action parameter from retaining its value across
Possible Duplicate: SQL exclude a column using SELECT * [except columnA] FROM tableA? I
Is it possible to exclude a specific database from streaming replication in Pg 9.1?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.