Hi,
I am trying to search on a field declared as 'text' using the wildcard '*' but am getting mixed results. Basically, it seems to me that it's stripping off the '*' character and isn't handling numbers or spaces well.
I'm using the 'text' field type for case insensitive fields but after running an analysis, am starting to think it...
Hi,
I have a Terabyte of data, maybe more, which I'd like to index and search with Lucene. I'd like to be able to split the index out to different machines, similar to what Solr does (if I understand Solr correctly).
Are there any existing tools to do this on the Windows platform?
Thanks!
Edit: I'm not very keen on running Java Luce...
I am trying to get a handle on Solrnet and interacting an ASP.NET site with a Solr server. However, the sample app (on the code repository) is MVC based ,does anyone know of a version in plain vanilla ASP.NET?
Thanks
...
Afternoon chaps,
After my adventures with Zend-Lucene-Search, and discovering it isn't all its cracked up to be when indexing large datasets, I've turned to Solr (thanks to Bill Karwin for that :) )
I've got Solr indexing the db far far quicker now, taking just over 8 minutes to index a table of just over 1.7million rows - which I'm v...
I'm running a search with a type field. I'd like to show results of a certain type ONLY if two other field have values for them. So in my filter query I thought it would be(type:sometype AND field1:* AND field2:*) but wildcard queries can't start with the *.
...
I want stopwords excluded except when the search term is within double quotes
eg. "just like that" should also search "that"
Is this possible?
Thank You
Ruth
...
Hi all,
The last couple of days we are thinking of using Solr as our search engine of choice.
Most of the features we need are out of the box or can be easily configured.
There is however one feature that we absolutely need that seems to be well hidden (or missing) in Solr.
I'll try to explain with an example. We have lots of documents...
http://localhost:8983/solr/select?wt=json&q=lat:[35%20to%2038] results in
**org.apache.lucene.queryParser.ParseException: Cannot parse 'lat:[35 to 38]': Encountered " "38 "" at line 1, column 11.
Was expecting:
"]"
This is a pretty basic range query and this error will prevent us from using SOLR for our projects
...
Given:
1 database per client (business customer)
5000 clients
Clients have between 2 to 2000 users (avg is ~100 users/client)
100k to 10 million records per database
Users need to search those records often (it's the best way to navigate their data)
Possibly relevant info:
Several new clients each week (any time during business h...
I have spend all morning trying to set up multiple cores on a SOLR installation that runs under Apache Tomcat server without success. My solr.xml looks like this:
<solr persistent="false" sharedLib="lib">
<cores adminPath="/admin/cores">
<core name="core0" instanceDir="/multicore/core0">
<property name="dataDir" value="...
Some colleagues of mine have a large Java web app that uses a search system built with Lucene Java. What I'd like to do is have a nice HTTP-based API to access those existing search indexes. I've used Nutch before and really liked how simple the OpenSearch implementation made it to grab results as RSS.
I've tried setting Solr's dataDir ...
I index some data include date in solr
but when search for specific date, i get some record (not all record) include some record in next day for example:
http://localhost:8080/solr/select/?q=pubdate:[2010-03-25T00:00:00Z TO 2010-03-25T23:59:59Z]&start=0&rows=10&indent=on&sort=pubdate desc
i have 625000 record in 2010-03-25 but abo...
I will use it to do full text search in my ruby on rails app.
which is the best choice.
solr use java to do this job. or sphix in ruby?
...
I have an indexed model called Article and I don't want solr to index unpublished articles.
class Article < ActiveRecord::Base
searchable do
text :title
text :body
end
end
How can I specify that article that is not #published? should not be indexed?
...
Im trying to add a url based security constraint to solr deployed in websphere 6.1. If I specify the core name in the url of the constraint then the admin url for that core gives a 404. Has anyone had any success with this or any suggestions? Cheers
...
Hi
I've installed solr-tomcat package on ubuntu lucid (10.04 latest).
It automatically install java and tomcat and hopefully all other dependencies.
I can access tomcat at http://localhost:8080 but not sure where to find the solr web admin
http://localhost:8180 gives me nothing.
Is this package known to work? I've read that on previous...
Afternoon chaps,
Right, I'm constructing a fairly complex (to me anyway) search system for a website using Solr, although this question is quite simple I think...
I have two search criteria, location and type. I want to return results that are exact matches to type (letter to letter, no exceptions), and like location.
My current sea...
Hey,
I'm trying django-haystack with Solr and HAYSTACK_INCLUDE_SPELLING = True.
How do you access the spelling suggestions on the template (generated by the default SearchView) ?
Edit: another question: Can the Spelling Suggestion find words from the database ? For example, using the default Note model from the haystack doc, and the d...
Is there any way of POSTing a new schema to Solr (eg. is there a handler for managing schema updates) instead of manually placing the new schema.xml in Solr home directory?
...
with symfony using doctrine is very easy cause its fully integrated into the framework.
i wonder if there is a possibility to integrate solr with symfony too (eg, via plugin?)
thanks
...