pysolr

Solr search with escaping solr reserved keywords

How do i query fields that contain solr reserved keywords as ":" in solr? For instance, q = 'uri:http://www.example.com' throws up an error for "http://www.example.com" containing reserved word ":" ...

Solr weird search behaviour

Hi, I am having lots of solr document indexed which has field uri = nntp://msnews.microsoft.com/microsoft.public.windows.server.sbs but when i search with query uri:nntp\://msnews.microsoft.com/microsoft.public.windows.server.sbs It returns zero results. The search query works with similar other uri (nntp\://msnews.microsoft.c...

PySolr rss dataimport

Hi, I am using PySolr to run my search. I want to index an rss feed and was wondering if this is possible using PySolr and if so how do you do it. I have found instructions on how to do this in Solr at http://wiki.apache.org/solr/DataImportHandler#HttpDataSource_Example but can't find anything on how to do the equivalent in PySolr...

django / haystack / solr simple config - partial field matching issue

I have a simple config of haystack/solr on my django app: from the models.py of this app: class device(models.Model): ... hostname = models.CharField(max_length=45, help_text="The hostname for this device") ... from the search_sites.py of this app: class devIndex(indexes.SearchIndex): '''Haystack class to allow for i...