Re: Out of Memory Errors

2008-10-22 Thread Nick Jenkin
Have you confirmed Java's -Xmx setting? (Max memory) e.g. java -Xmx2000MB -jar start.jar -Nick On Wed, Oct 22, 2008 at 3:24 PM, Mark Miller <[EMAIL PROTECTED]> wrote: > How much RAM in the box total? How many sort fields and what types? Sorts on > each core? > > Willie

Re: [VOTE] Community Logo Preferences

2008-11-23 Thread Nick Jenkin
/apache_solr_c_blue.jpg Good work to all the people who contributed. -Nick On Mon, Nov 24, 2008 at 3:06 PM, Norberto Meijome <[EMAIL PROTECTED]> wrote: > On Sun, 23 Nov 2008 11:59:50 -0500 > Ryan McKinley <[EMAIL PROTECTED]> wrote: > >> Please submit your preferences f

problem with DIH and MySQL

2009-01-20 Thread Nick Friedrich
kely to change in the future. Adding some data e.g. via curl works fine. So, I think the schema.xml is correct. I hope somebody can help. Thanks, Nick

Re: problem with DIH and MySQL

2009-01-20 Thread Nick Friedrich
no, there are no exceptions but I have to admit, that I'm not sure what you mean with console Zitat von Noble Paul ??? ?? : it got rolled back any exceptions on solr console? -- --Noble Paul

Re: what crawler do you use for Solr indexing?

2009-03-05 Thread Nick Tkach
Yes, Nutch works quite well as a crawler for Solr. - Original Message - From: "Tony Wang" To: solr-user@lucene.apache.org Sent: Thursday, March 5, 2009 5:32:57 PM GMT -06:00 US/Canada Central Subject: what crawler do you use for Solr indexing? Hi, I wonder if there's any open source cra

RE: Creating a distributed search in a searchComponent

2009-05-20 Thread Nick Bailey
prepare method of the my own search component. However I'm not sure if this is the greatest idea in case solr changes at some point. -Nick -Original Message- From: "Nick Bailey" Sent: Wednesday, May 20, 2009 1:29pm To: solr-user@lucene.apache.org Subject: Creating a distri

Creating a distributed search in a searchComponent

2009-05-20 Thread Nick Bailey
"shards" parameter of the query and have the Handler then treat the query as a distributed search. Anyone have any experience or know if this is possible? Thanks, Nick

dismax parsing applied to specific fields

2009-06-10 Thread Nick Jenkin
lord of the rings) I guess this can be thought of having two separate dismax configurations, one searching author and one searching title - and the intersection of the results is returned. Thanks -Nick

Sharded Index Creation Magic?

2009-07-13 Thread Nick Dimiduk
Hello! I'm working with Solr-1.3.0 using a sharded index for distributed, aggregated search. I've successfully run through the example described in the DistributedSearch wiki page. I have built an index from a corpus of some 50mil documents in an HBase table and created 7 shards using the org.apac

Re: Sharded Index Creation Magic?

2009-07-14 Thread Nick Dimiduk
ul 14, 2009 at 2:00 AM, Nick Dimiduk wrote: > > > However, when I search across all > > deployed shards using the &shards= query parameter ( > > > > > http://host00:8080/solr/select?shards=host00:8080/solr,host01:8080/solr&q=bod

Interesting OutOfMemoryError on a 170M index

2010-01-13 Thread Minutello, Nick
I am using autocommit - but as it turns out, I get OOME whether I do that or not) Any suggestions/advice of quick things to check before I dust off the profiler? Thanks in advance. Cheers, Nick === Please access the a

RE: Interesting OutOfMemoryError on a 170M index

2010-01-13 Thread Minutello, Nick
Agreed, commit every second. Assuming I understand what you're saying correctly: There shouldn't be any index readers - as at this point, just writing to the index. Did I understand correctly what you meant? -Nick -Original Message- From: Lance Norskog [mailto:goks...@gmail.

RE: Interesting OutOfMemoryError on a 170M index

2010-01-13 Thread Minutello, Nick
>> if you are using auto-commit, you should not call commit from the client Cheers, thanks. >> Do you need the index to be updated this often? Wouldn't increasing the autocommit time make it worse? (ie more documents buffered) I can extend it and see what effect

RE: Interesting OutOfMemoryError on a 170M index

2010-01-13 Thread Minutello, Nick
at a time is far from ideal - even with the buffering). I may have to either implement some client-side buffering to make it more efficient - or eliminate the http layer (go embedded). Thanks. -Nick -Original Message- From: Minutello, Nick Sent: 13 January 2010 23:29 To: solr-user

RE: Interesting OutOfMemoryError on a 170M index

2010-01-19 Thread Minutello, Nick
Thanks. Turns out the problem was related to throughput - I wasn't getting enough docs indexed per second and an internal queue in a vendor library was growing without bound. Using the StreamingUpdateSolrServer fixed that. -Nick -Original Message- From: Shalin Shekhar M

RE: Solr vs. Compass

2010-01-21 Thread Minutello, Nick
names, Compass, GPS, etc... Don't resonate well with me (sorry Shay)) - but if you have used hibernate, compass will feel very familiar. -Nick + In response to earlier mails Compass is not really anything like hibernate search. Admittedly I haven't touched HS in a while, but it seeme

RE: Solr vs. Compass

2010-01-21 Thread Minutello, Nick
Oops! >> Solr does a number of things that are really nice (that aren't really >> addressed by Solr) I obviously meant: "Solr does a number of things that are really nice (that aren't really addressed by Compass)" -N -Original Message- From: Minute

RE: Solr vs. Compass

2010-01-21 Thread Minutello, Nick
Actually, that's true. But IMO it's not that great :) After fighting it for a bit, we gave up on it ... (maybe more of a reflection of our capabilities rather than Solr's - but Id like to think we are some-way competant) -N -Original Message- From: Adamsky, Robert [mailto:radam...@techt

RE: Solr vs. Compass

2010-01-22 Thread Minutello, Nick
Agree with everything you said. -Original Message- From: Uri Boness [mailto:ubon...@gmail.com] Sent: 22 January 2010 01:25 To: solr-user@lucene.apache.org Subject: Re: Solr vs. Compass > > There seems to be an implication that compass wont scale as well as solr - and I'm not sure that

RE: Solr vs. Compass

2010-01-22 Thread Minutello, Nick
I would tend to agree. -Original Message- From: Otis Gospodnetic [mailto:otis_gospodne...@yahoo.com] Sent: 22 January 2010 05:18 To: solr-user@lucene.apache.org Subject: Re: Solr vs. Compass Hi Ken, Based on this, Solr sounds like the way to go. Otis -- Sematext -- http://sematext.c

RE: Solr vs. Compass

2010-01-25 Thread Minutello, Nick
t constructs the lucene document from the object & its relationships. Not an issue if you have a small number of entity types, but rather a pita if you have dozens... Or you eventually write some reflection-based thing.. (i.e. you begin to write a poor-mans implementation of compass OSEM) A

RE: Solr vs. Compass

2010-01-25 Thread Minutello, Nick
Sorry, you have completely lost me :/ In simple terms, there are times when you want the primary storage (database) and the Lucene index to be in synch - and updated atomically. It all depends on the kind of application. -N -Original Message- From: Fuad Efendi [mailto:f...@efendi.ca]

RE: Solr vs. Compass

2010-01-25 Thread Minutello, Nick
Maybe spend some time playing with Compass rather than speculating ;) If it helps, on the project where I last used compass, we had what I consider to be a small dataset - just a few million documents. Nothing related to indexing/searching took more than a second or 2 - mostly it was 10's or 100's

RE: Solr vs. Compass

2010-01-25 Thread Minutello, Nick
. Compass On 25.01.2010, at 22:16, Minutello, Nick wrote: > Sorry, you have completely lost me :/ > > In simple terms, there are times when you want the primary storage > (database) and the Lucene index to be in synch - and updated atomically. > It all depends on the kind of applica

RE: Solr vs. Compass

2010-01-26 Thread Minutello, Nick
-Original Message- From: Funtick [mailto:f...@efendi.ca] Sent: 26 January 2010 02:44 To: solr-user@lucene.apache.org Subject: RE: Solr vs. Compass Minutello, Nick wrote: > > Maybe spend some time playing with Compass rather than speculating ;) > I spent few weeks by studyin

Re: too often delta imports performance effect

2010-02-15 Thread Nick Jenkin
Yes, the old data will show until there has been a commit executed. 50 docs isn't many so you should be fine -Nick On Mon, Feb 15, 2010 at 11:41 AM, adeelmahmood wrote: > > thank you .. that helps .. actually its not that many updates .. close to 10 > fields probably and may be

Re: Seattle Hadoop/Lucene/NoSQL Meetup; Wed Feb 24th, Feat. MongoDB

2010-02-19 Thread Nick Dimiduk
Reminder: this month's Seattle Hadoop Meetup is this Wednesday. Don't forget to RSVP! On Tue, Feb 16, 2010 at 6:09 PM, Bradford Stephens < bradfordsteph...@gmail.com> wrote: > Greetings, > > It's time for another awesome Seattle Hadoop/Lucene/Scalability/NoSQL > Meetup! > > As always, it's at the

Re: Seattle Hadoop/Scalability/NoSQL Meetup Tonight!

2010-02-25 Thread Nick Dimiduk
Not that I'm aware of. 2010/2/25 Tim Terlegård > 2010/2/25 Bradford Stephens : > > Thanks for coming, everyone! We had around 25 people. A *huge* > > success, for Seattle. And a big thanks to 10gen for sending Richard. > > > > Can't wait to see you all next month. > > Did anyone record the event

Re: synonyms not working with copyfield

2010-05-13 Thread Nick Martin
Hi, You could use a copyField against all fields and then AND the query terms given. Quite restrictive but all terms would then have to be present to match. I'm still a relative newbie to Solr so perhaps I'm horribly wrong. Cheers Nick On 13 May 2010, at 18:18, surajit wrote: >

Re: Solr and security

2007-10-25 Thread Nick Jenkin
/searchapi?k=foobar&userToken=123456789 and then that page will check the userToken and send the request to solr and return the result solr gives. -Nick On 10/25/07, Cool Coder <[EMAIL PROTECTED]> wrote: > Thanks. I am trying to implement some sort authentication mechanism in Solr. &g

Re: PriceJunkie.com using solr!

2007-11-14 Thread Nick Jenkin
Hi This is faceting, http://wiki.apache.org/solr/SolrFacetingOverview -Nick On Nov 14, 2007 1:21 AM, William Silva <[EMAIL PROTECTED]> wrote: > Hi Mike, > I´m checking out www.pricejunkie.com and Í would like to know how do > you group the products and find the price range. Is it

Re: PriceJunkie.com using solr!

2007-11-16 Thread Nick Jenkin
I would guess by model number -Nick On 11/17/07, William Silva <[EMAIL PROTECTED]> wrote: > Hi Nick, > For example, searching for tv , the first document is "*Samsung SlimFit HDTV > TX-T2782 27" TV*" in 2 Sellers, Amazon and Circuit City. The tvs name are: >

Re: Query multiple fields

2007-11-17 Thread Nick Jenkin
Hi David You had it write in your example :) description:test AND type:10 But it would probably be wise to wrap any text in parenthesis: description:(test foo bar baz) AND type:10 You can find more info on the query syntax here: http://lucene.apache.org/java/docs/queryparsersyntax.html -Nick

Re: Solr PHP client

2007-11-20 Thread Nick Jenkin
You can use curl (www.php.net/curl) to interface with solr, its a piece of cake! -Nick On 11/20/07, SDIS M. Beauchamp <[EMAIL PROTECTED]> wrote: > I use the php and php serialized writer to query Solr from php > > It's very easy to use > > But it's not so easy t

Re: Loading performance slowdown at ~ 400K documents

2008-05-09 Thread Nick Jenkin
Hi Tracy Do you have autocommit enabled (or are you manually commiting every few thousand docs?) If not try that. -Nick On 5/10/08, Tracy Flynn <[EMAIL PROTECTED]> wrote: > Hi, > > I'm starting to see significant slowdown in loading performance after I > have loaded abou

Re: Solr hardware specs

2008-05-09 Thread Nick Jenkin
Hi It all depends on the load your server is under, how many documents you have etc. -- I am not sure what you mean by network connectivity -- solr really should not be run on a publicly accessible IP address. Can you provide some more info on the setup? -Nick On 5/10/08, dudes dudes <[EM

Multiple uniqueKey fields

2006-05-22 Thread Nick Snels
Hi, is it possible to define multiple uniqueKey fields in schema.xml? Kind regards, Nick Snels

Re: Multiple uniqueKey fields

2006-05-22 Thread Nick Snels
key Is this a reasonable configuration? Kind regards, Nick Snels On 5/22/06, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 5/22/06, Nick Snels <[EMAIL PROTECTED]> wrote: > is it possible to define multiple uniqueKey fields in schema.xml? Not currently, as one can normally get by

Integrate Lucene Dutchanalyzer in Solr

2006-06-21 Thread Nick Snels
Hi, I was wondering how I can get the Dutch analyzer from the Lucene sandbox integrated in Solr. Kind regards, Nick Snels

Dutch analyzer in combo with custom stopword list

2006-06-22 Thread Nick Snels
em is that the Dutch Analyzer doesn't filter all the stopwords, so I made an extended one. But the above configuration doesn't work. How can I make it work. Hope somebody can help me out. Kind regards, Nick

Re: Dutch analyzer in combo with custom stopword list

2006-06-22 Thread Nick Snels
Hi Yonik, thanks for the advice. The factory works like a charm!! Kind regards, Nick On 6/22/06, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 6/22/06, Nick Snels <[EMAIL PROTECTED]> wrote: > But why doesn'

Simple faceted browsing

2006-07-06 Thread Nick Snels
each. It would be great to hear from someone who was implemented this 'simple' grouping in Solr and maybe give me some pointers. Thanks. Kind regards, Nick Snels

Re: tomcat install

2006-09-17 Thread Nick Snels
Kind regards, Nick On 9/17/06, James liu <[EMAIL PROTECTED]> wrote: tomcat 5.5 win2003,,i can find http://localhost:8080,,it is ok. i copy solr-nightly.war to "c:\tomcat5.5\webapps\solr.war" i start tomcat,,it auto generate solr directory in "c:\tomcat5.5\webapps\solr" h

Re: tomcat install

2006-09-18 Thread Nick Snels
Hi James, the problem is most likely a xml error in either schema.xml or solrconfig.xml. Go through your Tomcat logs, if it is an xml error you should find the line where the xml parsing went wrong. Kind regards, Nick On 9/18/06, James liu <[EMAIL PROTECTED]> wrote: thk Nick. i do yo

Re: tomcat install

2006-09-18 Thread Nick Snels
a new solr-1.0.war file in c:\solr-nightly\dist. That war file contains also the lucene code along with your analyzers This is how I did it, don't know if this is the right or the easiest way to do it. Kind regards, Nick On 9/18/06, James liu <[EMAIL PROTECTED]> wrote: Hi Nick,

Re: tomcat install

2006-09-19 Thread Nick Snels
Dictionary (stemdict);*/ return new DutchStemFilter(input, null, stemdict); } } Then I could change text_lu in schema.xml to: Notice how DutchStemFilterFactory gets called. Hope that solves your problem. Kind regards, Nick On 9/19/0

Re: tomcat install

2006-09-19 Thread Nick Snels
w how it goes. Kind regards, Nick On 9/19/06, James liu <[EMAIL PROTECTED]> wrote: today not Ok。 i check source of cjk: CJKAnalyzer.java and CJKTokenizer.java (these from lucene 2.0 source code) and your code,,,i write CJKJLFilterFactory.java and CJKJLTokenizerFactory.java ant is

How to best index user-generated content

2006-09-20 Thread Nick Snels
Hi, I want users to add content to my site using tinyMCE, which generates HTML. When I tried adding the data to Solr, Solr refused to add it (or at least generated an error): SEVERE: org.xmlpull.v1.XmlPullParserException: parser must be on START_TAG or TEXT to read text (position: START_TAG seen

Re: [Newbie] Solr Setup

2006-10-03 Thread Nick Snels
I have Solr with Tomcat installed on a CentOS box. I had to place the Solr map, with the bin and conf maps inside under /home/tomcat/ and chown tomcat:tomcat /home/tomcat/solr and then Tomcat can find Solr home and the errors should be gone. Kind regards, Nick On 10/3/06, WHIRLYCOTT <[EM

Apostrophes in fields

2007-01-15 Thread Nick Jenkin
the one above? e.g. doc Shelley O'Hara true long descirption 9780764559747 Paperback IDGP Kierkegaard Within Your Grasp 2004 Thanks -- - Nick

Re: Apostrophes in fields

2007-01-16 Thread Nick Jenkin
ike author:"Shelley O hara", author:"Shelley O'hara" work as expected. Any ideas? Thanks -Nick On 1/16/07, Bertrand Delacretaz <[EMAIL PROTECTED]> wrote: On 1/16/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > Nick - this depends on the analyzer used to inde

Re: Apostrophes in fields

2007-01-16 Thread Nick Jenkin
g with : WordDelimiterFilter. particularly when using the generate___Parts="true" options Nick: if you want simpler matching like this, you might want to consider simplifying your definition of "text" ... if you look at the "textTight" fieldtype in the example shema (used by t

Re: Solr logo poll

2007-04-06 Thread Nick Snels
B

Solr Sorting, merging/weighting sort fields

2007-05-09 Thread Nick Jenkin
for harry potter and gets into the search results (but has a very low score value), this will bring it to the top of the results. I want to be able to weight popularity in such a way that it boosts the score, but will not greatly affect the search results. Is this possible? Thanks -- - Nick

Re: Solr Sorting, merging/weighting sort fields

2007-05-09 Thread Nick Jenkin
Thanks, worked perfectly! -Nick On 5/10/07, Walter Underwood <[EMAIL PROTECTED]> wrote: No problem. Use a boost function. In a DisMaxRequestHandler spec in solrconfig.xml, specify this: popularity^0.5 This value will be added to the score before ranking. You will probably n

Re: Question about delete

2007-05-10 Thread Nick Jenkin
. -Nick On 5/10/07, James liu <[EMAIL PROTECTED]> wrote: i use command like this > curl http://localhost:8983/solr/update --data-binary 'name:DDR' > curl http://localhost:8983/solr/update --data-binary '' > > and i get > numDocs : 0 > maxDoc : 121881

Re: Solr Sorting, merging/weighting sort fields

2007-05-10 Thread Nick Jenkin
Hi Otis I used a boosting function, bf pointed me in the right direction :) I actually used the _val_ hack, so query foo:bar _val_:"ord(popularity)^0.5", still playing with it though its still skewing results a bit to much. -Nick On 5/11/07, Otis Gospodnetic <[EMAIL PROTECTED]>

Re: How to run solr on command line ?

2007-05-18 Thread Nick Jenkin
e java 1.5 runtime. It would also be a good idea to have a look at the tutorial http://lucene.apache.org/solr/tutorial.html it gives detailed steps on how to get the example running. -Nick On 5/18/07, Laxmilal Menaria <[EMAIL PROTECTED]> wrote: Hello everyone, Have anyone knows how to run solr

Re: how to use function queries

2007-05-22 Thread Nick Jenkin
Hi Mike Try: _val_:"recip(rord(date),1,1000,1000)^2" -Nick On 5/22/07, mike topper <[EMAIL PROTECTED]> wrote: I'm trying to retrieve results from solr such that newer documents' scores are boosted. From the solr wiki it states that I should use a function query to i

Re: question regarding sorting

2007-05-23 Thread Nick Jenkin
t;). Since solr1.2, it is recommend to use the "sort" parameter described in CommonQueryParameters." -Nick On 5/24/07, James O'Rourke <[EMAIL PROTECTED]> wrote: I am having strange behaviour experimenting with the example solr server. Via the tutorial - except I set up my

Re: How can I use dates to boost my results?

2007-06-09 Thread Nick Jenkin
Hi Daniel You can use a boosting function, In the dismax request handler insert the following: recip(rord(created),1,1000,1000) Obviously you will need to modify the values a bit, more info here: http://wiki.apache.org/solr/FunctionQuery -Nick On 6/9/07, Daniel Alheiros <[EM

Re: How to use SolrQuery PHP

2007-06-09 Thread Nick Jenkin
Hi Tiong My suggestion would be to write your own using the SolrQuery script as a guide. But did you change define('SOLR_META_QUERY', '127.0.0.1:8080'); so that it points to your solr server? (Which is most likely define('SOLR_META_QUERY', 'localhost:8983&

Re: To make sure XML is UTF-8

2007-06-09 Thread Nick Jenkin
27;column']); -Nick On 6/10/07, Ken Krugler <[EMAIL PROTECTED]> wrote: >This is how the whole process looks like - > >1. I have a web page that I want to index. So I first copy that web page, >breaking it down to different section, and store it in mysql into different >

Re:

2007-06-19 Thread Nick Jenkin
lar commit between inserts (I do one every 10,000) otherwise you might get out-of-memory errors. -Nick On 6/20/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: : Works ok. But I've noticed that the faq recommends issuing : before reindexing. The problem is also seems to commit : cha

Re: page rank

2007-06-20 Thread Nick Jenkin
Also if you are using the standard request handler you can use the "val" hack: foo:"bar" _val_:"recip(rord(numberField),1,1000,1000)" You can find more info about this here: http://wiki.apache.org/solr/FunctionQuery -Nick On 6/21/07, Daniel Alheiros <[EMAIL P

Re: page rank

2007-06-22 Thread Nick Jenkin
million documents) which gets updated daily with no performance issues. 3) What query handler are you using, dismax or standard? dismax is when you send keywords and a lucene query is generated standard is when you create your own lucene query -Nick On 6/23/07, David Xiao <[EMAIL PROTECTED]>

Re: Use Windows 1252 encoding...

2007-06-22 Thread Nick Jenkin
Have you tried using the PHP functions utf8_decode/utf8_encode? As far as I understand only UTF8 is supported (but I could be wrong on that!) -Nick On 6/23/07, escher2k <[EMAIL PROTECTED]> wrote: Is it possible to use Windows 1252 encoding instead of UTF-8 for Solr ? The application r

Re: i wanna change response type to PHP serialize

2007-06-24 Thread Nick Jenkin
Hi James I think you would be better of outputting an PHP array, and running eval() over it, the PHP serialize format is quite complicated. On that note, you might be interested in: http://issues.apache.org/jira/browse/SOLR-196 -Nick On 6/25/07, James liu <[EMAIL PROTECTED]> wrote: which

Re: i wanna change response type to PHP serialize

2007-06-25 Thread Nick Jenkin
o use json_decode. -Nick On 6/26/07, Tristan Vittorio <[EMAIL PROTECTED]> wrote: I am also looking for a PHP response writer that outputs serialized PHP code, I've taken a look at SOLR-196<http://issues.apache.org/jira/browse/SOLR-196>but it's not quite what I need. Unl

Re: i wanna change response type to PHP serialize

2007-06-26 Thread Nick Jenkin
I have some good news :o) https://issues.apache.org/jira/browse/SOLR-275 Please let me know if you find any bugs Thanks -Nick On 6/26/07, James liu <[EMAIL PROTECTED]> wrote: I think it simple to u. so i wait for ur good news. 2007/6/26, Nick Jenkin <[EMAIL PROTECTED]>: > &g

Re: i wanna change response type to PHP serialize

2007-06-26 Thread Nick Jenkin
Interesting, what version of solr are you using, I tested on 1.2. -Nick On 6/26/07, James liu <[EMAIL PROTECTED]> wrote: i just cp it to src\java\org\apache\solr\request and ant dist...i think maybe my method is wrong. same error infromation... java.lang.NoClassDefFoundError: org/apach

Re: i wanna change response type to PHP serialize

2007-06-26 Thread Nick Jenkin
Hey James, The error you posted is the same you posted above in a previous email, could it be something else? -Nick On 6/26/07, Nick Jenkin <[EMAIL PROTECTED]> wrote: Interesting, what version of solr are you using, I tested on 1.2. -Nick On 6/26/07, James liu <[EMAIL PROTECTED]>

Re: i wanna change response type to PHP serialize

2007-06-26 Thread Nick Jenkin
If you are using the example provided in 1.2 (using jetty) you need to use "ant example" rather than "ant dist" -Nick On 6/27/07, James liu <[EMAIL PROTECTED]> wrote: Yes, i use 1.2my compile method: download solr 1.2 and modify file by your patch. use `ant dis

Re: i wanna change response type to PHP serialize

2007-06-26 Thread Nick Jenkin
http://nickjenkin.com/misc/apache-solr-1.2.0-php-serialize.tar.gz Try that -Nick On 6/27/07, James liu <[EMAIL PROTECTED]> wrote: i use tomcat ,, send ur solr version to me...i try it again.. 2007/6/27, Nick Jenkin <[EMAIL PROTECTED]>: > > If you are using the example prov

Re: i wanna change response type to PHP serialize

2007-06-27 Thread Nick Jenkin
Hi James It is totally not optimized, when you say change your content into ???, I assume this is because of UTF8 issues, are you using utf8_decode etc? Thanks -Nick On 6/28/07, James liu <[EMAIL PROTECTED]> wrote: It is slower than json and xml,,,and it will change my content into ???

Re: i wanna change response type to PHP serialize

2007-06-27 Thread Nick Jenkin
Are you able to attach a file of serialized (direct php serialized output from solr) result so I can test? Thanks -Nick On 6/28/07, James liu <[EMAIL PROTECTED]> wrote: code not change,,,and i not use utf8_decodeshould do it? 2007/6/28, Nick Jenkin <[EMAIL PROTECTED]>: > >

Re: How to use AND / OR with DismaxRequestHandler?

2007-07-02 Thread Nick Jenkin
Not sure you can, but if it helps you can use boosting in the standard request handler: post AND lettre _val_:"recip(popularityRank,1,1000,1000)^2.5" -Nick On 7/2/07, Thierry Collogne <[EMAIL PROTECTED]> wrote: Hello, I have a couple questions about the DismaxRequestHandle

Min-should-match and Mutli-word synonyms unexpected result

2018-02-05 Thread Nick D
MM anymore for these type of queries or if there is something I setup incorrectly, any help would be greatly appreciated. Nick

Re: Min-should-match and Mutli-word synonyms unexpected result

2018-02-06 Thread Nick D
Thanks Steve, I'll test out that version. Nick On Feb 6, 2018 6:23 AM, "Steve Rowe" wrote: > Hi Nick, > > I think this was fixed by https://issues.apache.org/ > jira/browse/LUCENE-7878 in Solr 6.6.1. > > -- > Steve > www.lucidworks.com > >

Suggester using up memory

2020-11-20 Thread Nick Vercammen
his case? Thanks in advance! Nick

Synonym expansions w/ phrase slop exhausting memory after upgrading to SOLR 7

2019-12-17 Thread Nick D
Not sure if there is a change in phrase slop that now takes synonyms into account and if there is way to disable that kind of expansion or not. I am not sure if it is related to SOLR-10980 <https://issues.apache.org/jira/plugins/servlet/mobile#issue/SOLR-10980> or not, does seem to be related, but referenced Solr 6 which does not do the expansion. Any help would be greatly appreciated. Nick

Re: Synonym expansions w/ phrase slop exhausting memory after upgrading to SOLR 7

2019-12-18 Thread Nick D
afe, did I miss something? Thanks again for your help, Nick On Wed, Dec 18, 2019, 8:10 AM Michael Gibney wrote: > This is related to this issue: > https://issues.apache.org/jira/browse/SOLR-13336 > > Also tangentially relevant: > https://issues.apache.org/jira/browse/LUCENE-8531 &g

ConnectionImpl.isValid() does not behave as described in Connection javadocs

2020-01-19 Thread Nick Vercammen
/java/sql/Connection.html#isValid(int)) a timeout = 0 means no timeout. In the current implementation a timeout = 0 means that the connection is always invalid. I can provide a PR for this. Nick -- [image: Zeticon] Nick Vercammen CTO +32 9 275 31 31 +32 471 39 77 36 nick.vercam...@zeticon.com &

Re: ConnectionImpl.isValid() does not behave as described in Connection javadocs

2020-01-19 Thread Nick Vercammen
I think so as the ConnectionImpl in solr is not in line with the description of the java connection interface > Op 19 jan. 2020 om 21:23 heeft Erick Erickson het > volgende geschreven: > > Is this a Solr issue? > >> On Sun, Jan 19, 2020, 14:24 Nick Vercammen &

SQL selectable fields

2020-01-23 Thread Nick Vercammen
th_ FROM films LIMIT 2000": From line 1, column 37 to line 1, column 47: Column '_nest_path_' not found in table 'films' Can I determine which fields can be used in a SQL query? By means of the type? kind regards, Nick

<    1   2