Re: Solr search word NOT followed by another word

2018-02-16 Thread ivan
Hi Emir, i'm testing these on the examples that comes with solr (techproducts), i just added some docs to that. Both those queries give the expected results. I'm testing on a TextField (indexed, tokenized, stored). -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solr search word NOT followed by another word

2018-02-16 Thread ivan
That still does not work for me. I'm not getting results for "Leonardo da vinci bla bla Leonardo" or "Leonardo 1 da vinci bla bla Leonardo". Tried on both solr 6.4.1 and solr 7.2.1 -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

RE: Solr search word NOT followed by another word

2018-02-16 Thread ivan
I'm using solr 6.4.1, i will try your updated version and let you know, thanks! -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

RE: Solr search word NOT followed by another word

2018-02-14 Thread ivan
Hi Timothy, i'm trying to use your Parser, but i'm having some trouble with the versions of solr\lucene. I'm trying to use version 6.4.1 but i'm facing a lot of incompatibilities with version 5. Is there any updated version of the plugin? -- Sent from:

Re: Solr search word NOT followed by another word

2018-02-14 Thread ivan
I'm working on 6.4.1 (but i tried on 7.2.1 too) and i'm not getting results for the case i've shown before. -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solr search word NOT followed by another word

2018-02-13 Thread ivan
Hi Emir, unfortunately that does not work, since i'm not getting a match for my third example ("Leonardo is the name of Leonardo da Vinci") because i have both "Leonardo" and "Leonardo da Vinci" in the same field. I'm fine with having "Leonardo da Vinci" as long as i have another "Leonardo" (NOT

RE: Solr search word NOT followed by another word

2018-02-13 Thread ivan
That looks great! Not sure how to install that into my version of Solr though (using 6.4.1) -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Solr search word NOT followed by another word

2018-02-12 Thread ivan
What i'm trying to do is to only get results for "Leonardo" when is not followed by "da vinci". So any result containing "Leonardo" (not followed by "da vinci") is fine even if i have "Leonardo da vinci" in the result. I want to filter out only the results where i don't have "Leonardo" without "da

RE: Search for a word NOT followed by another on a Solr query

2018-02-12 Thread ivan
Markus Jelsma-2 wrote > You can abuse phrase query for that, q=leonardo AND -"leonardo da vinci" > (asuming you have a proper default field set). > > Markus This way i'm losing results where i have both "Leonardo" and "Leonardo da vinci in the same field, see example number 3 "Leonardo foo bar

Search for a word NOT followed by another on a Solr query

2018-02-12 Thread ivan
What i'm trying to do is to only get results for "Leonardo" when is not followed by "da vinci". If i have "Leonardo da vinci" in my result is fine as long as i have another "Leonardo" without "da vinci". Examples: "Leonardo foo bar" OK "Leonardo da vinci foo bar" KO "Leonardo foo bar Leonardo da

RE: Zookeeper credentials are showed up on the Solr Admin GUI

2017-09-19 Thread Pekhov, Ivan (NIH/NLM/NCBI) [C]
Hi Susheel, Thank you so much for so quick response! I've created the issue as you requested, please refer to the link: https://issues.apache.org/jira/browse/SOLR-11369 Thank you! Ivan -Original Message- From: Susheel Kumar [mailto:susheel2...@gmail.com] Sent: Tuesday, September 19

Zookeeper credentials are showed up on the Solr Admin GUI

2017-09-19 Thread Pekhov, Ivan (NIH/NLM/NCBI) [C]
probably impossible) to restrict users from accessing some particular paths with security.json mechanism, and we think that that would be beneficial for overall Solr security to hide Zookeeper credentials. Thank you so much for your consideration! Best regards, Ivan Pekhov

Re: Managed schema vs schema.xml

2017-03-07 Thread Ivan Bianchi
Hi OTH, I personally prefer to use the classic *schema.xml* file as I feel its better for core creation with the desired fields than dealing with api calls. You can use it specifying the schemaFactory class as ClassicIndexSchemaFactory as follows: Best regards, Ivan 2017-03-07 17:41 GMT+01

Multiple bf VS Single sum bf (performance)

2017-02-16 Thread Ivan Bianchi
, -- Ivan

Get orphan documents

2017-02-13 Thread Ivan Bianchi
ot;content_type": 'A', "_childDocuments_": [ { "id": "S_1", "content_type": "B", }, Best regards, -- Ivan

Re: Boolean disjunction with nested documents

2017-01-20 Thread Ivan Bianchi
:2)" OR _query_:"has_new_filters:false" Any thoughts on this kind of nested queries (_query_) performance? Best regards, Ivan 2017-01-19 18:40 GMT+01:00 Mikhail Khludnev <m...@apache.org>: > It's my pet peeve. Try > ?q={!parent which=content_type:activity}(schedule.weekday:

Boolean disjunction with nested documents

2017-01-19 Thread Ivan Bianchi
I only get the first condition. Also, if I use the "(" it gives me a syntax error. The other issue here, is that if I remove the " chars, Solr gets the second condition (has_schedules:false) as part of the nested child query, which implies an error as this is a parent's field. Thank you for any help, -- Ivan

Re: MLT Performance Degraded Between 4.6.1 and 5.5.2 Solr

2017-01-06 Thread Ivan Provalov
Vectors="true"/>4. text_en is a pretty standard text fieldType. Thanks, Ivan On Monday, October 31, 2016 5:10 PM, Ivan Provalov <iprov...@yahoo.com> wrote: I noticed a 3X performance degradation for MoreLikeThis between 4.6.1 and 5.5.2.  Our configuration:      where text_en is a pretty standard text fieldType. Any pointers? Thanks, Ivan Provalov

MLT Performance Degraded Between 4.6.1 and 5.5.2 Solr

2016-10-31 Thread Ivan Provalov
I noticed a 3X performance degradation for MoreLikeThis between 4.6.1 and 5.5.2.  Our configuration:      where text_en is a pretty standard text fieldType. Any pointers? Thanks, Ivan Provalov

Facets for fields in subdocuments with block join, is it possible?

2014-02-11 Thread Henning Ivan Solberg
Hello, I'm testing block join in solr 4.6.1 and wondering, is it possible to get facets for fields in subdocuments with number of hits based on ROOT documents? See example below: doc documentPartROOT/documentPart texttesting 123/text titletitle/test groupGRP/group

Which time consuming processes are executed during Solr startup?

2012-05-28 Thread Ivan Hrytsyuk
For example we know that cache warming is executed during startup. Are any other processes executed during Solr startup? Thank you, Ivan

RE: Solr Single Core vs Multiple Cores installation for localization

2012-05-21 Thread Ivan Hrytsyuk
and tiny cores could be a pain'? Could you please provide more details. Thank you for your help, Ivan -Original Message- From: Jack Krupansky [mailto:j...@basetechnology.com] Sent: Thursday, May 17, 2012 3:17 AM To: solr-user@lucene.apache.org Subject: Re: Solr Single Core vs Multiple Cores

Solr Single Core vs Multiple Cores installation for localization

2012-05-16 Thread Ivan Hrytsyuk
is disabled? This option is really important for us. 3. What processes are executed during Solr startup? Thank you in advance, Ivan

RE: [Solr-3.4] Norms file size is large in case of many unique indexed fields in index

2011-11-11 Thread Ivan Hrytsyuk
key: 100? (that is only doc1 should be returned) 2. Should I post issue to JIRA about large index size, or it's expected behaviour in our case? Thanks, Ivan From: ysee...@gmail.com [ysee...@gmail.com] On Behalf Of Yonik Seeley [yo

[Solr-3.4] Norms file size is large in case of many unique indexed fields in index

2011-11-10 Thread Ivan Hrytsyuk
is as expected in mentioned cases? And if it's, what configuration can be applied to reduce size of index. Thank you in advance, Ivan

Re: Multi Core indexed using SolrJ

2011-11-10 Thread Ivan Hrytsyuk
You should create HttpSolrServer that works with a core. One CommonsHttpSolrServer per core. java snippet: final CommonsHttpSolrServer solrServer = new CommonsHttpSolrServer(http://localhost:8080/solr; + /myCoreName); The rest remains unchanged. Thanks, Ivan On Thu, 2011-11-10 at 16:25 +0200

Re: Multi Core indexed using SolrJ

2011-11-10 Thread Ivan Hrytsyuk
To create a core please take a look at org.apache.solr.client.solrj.request.CoreAdminRequest. To index documents try: SolrServer#add(CollectionSolrInputDocument); SolrServer#commit(); On Thu, 2011-11-10 at 16:39 +0200, dhaivat wrote: Thanks Ivan, Is there any specific method using which i

Michigan Information Retrieval Enthusiasts Group Quarterly Meetup - August 17th 2011 - Solr in the Cloud, Erick Erickson

2011-08-09 Thread Provalov, Ivan
Next IR Meetup will be held at Farmington Hills Community Library on August 17, 2011. Please RSVP here: http://www.meetup.com/Michigan-Information-Retrieval-Enthusiasts-Group Thank you, Ivan Provalov

Michigan Information Retrieval Enthusiasts Group Quarterly Meetup - May 19th 2011

2011-05-06 Thread Provalov, Ivan
features (words, part of speech, negations, etc...) SVM classifier is trained and evaluated. Thank you, Ivan Provalov

Michigan Information Retrieval Enthusiasts Group Quarterly Meetup - November 13, 2010

2010-10-27 Thread Provalov, Ivan
-9514 6087393 Remote Web-Conferencing: http://www.conferenceplus.com/ 866-394-9514 6087393 Location: uRefer, 924 N. Main St., Suite 3, Ann Arbor, MI Thank you, Ivan Provalov Information Architect Cengage Learning

Embedded Solr weird behaviour

2009-04-14 Thread Adrian Ivan
Hello, I am using both Solr server and Solr embedded versions in the same context. I am using the Solr Server for indexing data which can be accessed at enterprise level, and the embedded version in a desktop application. The idea is that both index the same data, have the same schema.xml