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

  • Home
  • SEARCH
  • 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 7190591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:32:54+00:00 2026-05-28T19:32:54+00:00

There are many independent Python bindings for SOLR ( see here ). Which ones

  • 0

There are many independent Python bindings for SOLR (see here). Which ones are available for Jython (i.e. are implemented in pure Python as opposed to C-modules) and which one would you recommend?

See also
Solr: best documented, easy to use, stable Python APIs (didn’t get much useful responses so far)

  • 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-05-28T19:32:57+00:00Added an answer on May 28, 2026 at 7:32 pm

    I use SOLR from Python (CPython) and from Scala (JVM). In both cases I use the same API, namely an HTTP client. In other words URLs like http://www.example.com:8080/solr/datacore/select?q=DocID:*&fl=DocID,Descr

    The URLs are built up through composition. For the query there is a dict containing fieldnames as keys, and matches as values. For instance the above query would look like {“DocID”:”*”}. This dict is joined with AND between each key. Actually, the values are lists which get joined using OR so a more complex query like

    {"DocType": ["Book","Paper",Letter"], "Length": ["[0 TO 200000]"]}
    

    Would turn into a SOLR query like

    DocType:Book OR Paper OR Letter AND Length:[0 TO 200000]
    

    Composition is done with a simple object where each method returns self for instance:

    def onlybooks(self):
       self.querydict["DocType"] = "Book"
       return self
    

    This then gets used in a method chain like:

    solrquery = onlybooks().specifiedauthor(params).biggestdoc(200000)
    

    Anything more than this is overkill and hides too much of what is happening in an obscure library that you cannot understand without studying its code. It is hard enough just understanding all the power of SOLR’s query language and how to use it effectively. Don’t put a library between you and SOLR when it only takes about a page of code to write some helper methods for constructing a query URL.

    By the way, if you do use a library and it requires seeing the SOLR schema in order to function, do not include the SOLR schema in a file with your app. Just get it directly from the server in your app and cache it locally.

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

Sidebar

Related Questions

I can't think of many reasons (or any at all) in which multiple independent
see also Which C#/.NET Dependency Injection frameworks are worth looking into? There are now
There are many ASP.MVC blog post bits and pieces scattered over different web sites,
There are many ways of doing debugging, using a debugger is one, but the
There are many techniques to enforce strong passwords on website: Requesting that passwords pass
There are many tools out there for writing and managing requirements, but are there
There are many skills a programmer could have (understanding the problem, asking good questions,
There are many different styles of variable names that I've come across over the
There are many editions of Eclipse for Java development. I am trying out MyEclipse
There are many drawbacks to using void * in C (memory related, type related,

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.