Re: Delete all documents in the index

2012-09-05 Thread Mark Mandel
Thanks for posting this! I ran into exactly this issue yesterday, and ended up felting the files to get around it. Mark Sent from my mobile doohickey. On Sep 6, 2012 4:13 AM, Rohit Harchandani rhar...@gmail.com wrote: Thanks everyone. Adding the _version_ field in the schema worked. Deleting

Re: Using a sum of fields in a filter query

2012-09-04 Thread Mark Mandel
Thanks! The piece I was also missing as well was to add: queryParser name=functionparser class=org.apache.solr.search.FunctionQParserPlugin/ To my solrconfig.xml. Once I did that, it all worked perfectly! Much appreciated! Mark On Tue, Sep 4, 2012 at 5:25 PM, Rafał Kuć r@solr.pl wrote:

Re: Solr can not index F**K!

2011-07-31 Thread Mark Mandel
I hate to be the PC guy, but seriously, did this have to be said? On Mon, Aug 1, 2011 at 6:58 AM, randohi rand...@lawyer.com wrote: One of our clients (a hot girl!) -- E: mark.man...@gmail.com T: http://www.twitter.com/neurotic W: www.compoundtheory.com cf.Objective(ANZ) + Flex - Nov 17,

Re: Announcement/Invitation: Melbourne Solr/Lucene Users Group

2011-07-20 Thread Mark Mandel
Sounds great :) I'll sign up as well. Look forward to a meeting! Mark On Thu, Jul 21, 2011 at 2:14 PM, Dave Hall dave.h...@skwashd.com wrote: Hi Tal, On 21/07/11 14:04, Tal Rotbart wrote: We have noticed that there is a blossoming of Apache Solr/Lucene usage development in Melbourne

Re: Tokenising based on known words?

2011-06-09 Thread Mark Mandel
Synonyms really wouldn't work for every possible combination of words in our index. Thanks for the idea though. Mark On Thu, Jun 9, 2011 at 3:42 PM, Gora Mohanty g...@mimirtech.com wrote: On Thu, Jun 9, 2011 at 4:37 AM, Mark Mandel mark.man...@gmail.com wrote: Not sure if this possible

Re: Tokenising based on known words?

2011-06-09 Thread Mark Mandel
/ShingleFilterFactory.html Use the empty string for the tokenSeparator to get wordstogether style tokens in your index. I think you'll want to apply this filter only at index-time, since the users will supply the shingles all by themselves :). Steve -Original Message- From: Mark Mandel

Tokenising based on known words?

2011-06-08 Thread Mark Mandel
Not sure if this possible, but figured I would ask the question. Basically, we have some users who do some pretty rediculous things ;o) Rather than writing red jacket, they write redjacket, which obviously returns no results. Is there any way, with Solr, to go hunting for known words (maybe if

Re: *:* query with dismax

2011-05-06 Thread Mark Mandel
This is exactly what should be happening, as the dismax parser doesn't understand regular query syntax (and for good reason too). This tripped me up as well when I first started using dismax. Solution for me was to comfigure the handler to use *:* when the query is empty, so that you can still

Re: Facet sorting

2011-04-18 Thread Mark Mandel
(java.lang.String) Much appreciated for pointing me in the right direction though. Mark On Mon, Apr 18, 2011 at 3:34 PM, Yonik Seeley yo...@lucidimagination.comwrote: On Mon, Apr 18, 2011 at 1:10 AM, Mark Mandel mark.man...@gmail.com wrote: Is it possible to sort some facets by Lex

Facet sorting

2011-04-17 Thread Mark Mandel
Quick question - Is it possible to sort some facets by Lex, and others by numeric value? From everything I've seen, it's either all or none, with no in between. Was just curious if that was not the case. Getting around it by doing post-sorting with comparators, but thought I may not need that

Allowing looser matches

2011-04-13 Thread Mark Mandel
Not sure if the title explains it all, or if what I want is even possible, but figured I would ask. Say, I have a series of products I'm selling, and a search of: Blue Wool Rugs Comes in. This returns 0 results, as Blue and Rugs match terms that are indexes, Wool does not. Is there a way to

Re: Allowing looser matches

2011-04-13 Thread Mark Mandel
parameter of 66%. Pierre -Message d'origine- De : Mark Mandel [mailto:mark.man...@gmail.com] Envoyé : mercredi 13 avril 2011 10:04 À : solr-user@lucene.apache.org Objet : Allowing looser matches Not sure if the title explains it all, or if what I want is even possible

Re: Search Regression Testing

2011-04-07 Thread Mark Mandel
have been doing. paul Le 6 avr. 2011 à 08:10, Mark Mandel a écrit : Hey guys, I'm wondering how people are managing regression testing, in particular with things like text based search. I.e. if you change how fields are indexed or change boosts in dismax, ensuring that doesn't

Search Regression Testing

2011-04-06 Thread Mark Mandel
Hey guys, I'm wondering how people are managing regression testing, in particular with things like text based search. I.e. if you change how fields are indexed or change boosts in dismax, ensuring that doesn't mean that critical queries are showing bad data. The obvious answer to me was using

Re: Broken stats.js

2011-03-28 Thread Mark Mandel
Ah cool, thanks for your help. I'll get digging, and see what I can do. Mark On Tue, Mar 29, 2011 at 11:36 AM, Chris Hostetter hossman_luc...@fucit.orgwrote: : I can't seem to find any references to this issue anywhere except : : https://issues.apache.org/jira/browse/SOLR-1750 : : (Which

Broken stats.js

2011-03-25 Thread Mark Mandel
Relatively new to SOLR (only JUST deployed my first SOLR app to production, very proud ;o) ) I went to check out the solr/mycore/admin/stats.jsp page... and all I get is a blank page. Looking into it deeper, it seems that SOLR is returning badly encoded XML to the browser, so it's not rendering.