Re: Solr - autocommit params

2007-06-25 Thread Mike Klaas
both, only the maxtime is being considered. Is it a known bug of 1.2 release? FYI, this is now fixed in trunk. best, -Mike

Re: Does sort field need have to be 'store'?

2007-06-26 Thread Mike Klaas
plus the on-disk footprint of the index, it will eventually reside completely in memory (assuming no other processes are using ram). I don't understand your second question. -MIke

Re: Dynamically calculated range facet

2007-06-26 Thread Mike Klaas
be almost identical to the code in the builtin request handlers), and return the results. cheers, -Mike

Re: Dynamically calculated range facet

2007-06-27 Thread Mike Klaas
On 27-Jun-07, at 1:07 AM, Martin Grotzke wrote: On Tue, 2007-06-26 at 16:48 -0700, Mike Klaas wrote: On 26-Jun-07, at 3:01 PM, Martin Grotzke wrote: Easy: facet based on fixed ranges (say, every 10 dollars for x < 100, 100 dollars for x < 1000, etc)., and combine them sensically

Re: Processor load

2007-06-28 Thread Mike Klaas
ps output it is a fork of one of the childs: have you tried looking at a thread dump using jConsole/kill -QUIT? -Mike

Re: Processor load

2007-06-28 Thread Mike Klaas
mmit, or are you programmatically sending every 10s? -Mike

Re: Processor load

2007-06-28 Thread Mike Klaas
On 28-Jun-07, at 10:52 AM, Michael Thessel wrote: Hi Mike Thanks for your quick response. The restarting the server hasn't any effect. Im not a Java expert and not really familiar with the java tools. I'm no expert in this matter either. Have you tried kill -QUIT? (it prints a t

Re: Solr indexing

2007-07-03 Thread Mike Klaas
), can we still search on that index (to use the old content)? Aboslutely. This is the central tenet of Solr. -Mike

Re: Highlighting in large text fields

2007-07-03 Thread Mike Klaas
). It will be in the next release. -Mike

Re: Indexing question - split word and comma

2007-07-05 Thread Mike Klaas
WhitespaceAnalyzer, which only splits on whitespace. If you want to split words from punctuation, you should use something like StandardAnalyzer or WordDelimiterFilter. It is also extremely helpful to look at the analysis page on the solr admin (verbose=true) and see exactly what tokens your analyzer produces. -Mike

Re: Deleting from index via web

2007-07-12 Thread Mike Klaas
o the ID, in fact, I'm not sure why escapeVal is in there at all if you can't send it non integer values. Maybe someone can enlighten us. I would suggest replacing it with self.escapeVal(unicode(id)) backticks are equivalent to repr(), which does the wrong thing for strings. -Mike

Re: Question on query syntax

2007-07-12 Thread Mike Klaas
t) match (col=pile1 or col=pile2) +text +(collection:pile1 collection:pile2) Note in the last example, the + is necessary before the text because otherwise it would be optional and not required (as there are other required clauses). -Mike

Re: Question on query syntax

2007-07-12 Thread Mike Klaas
docs containing 'text' or matching X; X = find docs that don't match 'collection:pile1' # invalid query note that if "-collection:pile1" is the main query, Solr detects this case and handles it. -Mike

Auto recovery of a failed Solr Cloud Node?

2018-09-25 Thread Kimber, Mike
Hi, Is there a recommend design pattern or best practice for auto recovery of a failed Solr Node? I'm I correct to assume there is nothing out of the box for this and we have to code our own solution? Thanks Michael Kimber This electronic message may contain proprietary and confidential inf

RE: Auto recovery of a failed Solr Cloud Node?

2018-09-27 Thread Kimber, Mike
the above and then if the issue happens then an automated mechanism in SolrCloud to restart the instance. Or is this something we have to code ourselves? Thanks Mike -Original Message- From: Erick Erickson Sent: 25 September 2018 18:25 To: solr-user Subject: Re: Auto recovery of a fa

InetAddressPoint support in Solr or other IP type?

2018-03-22 Thread Mike Cooper
I have scoured the web and cannot find any discussion of having the Lucene InetAddressPoint type exposed in Solr. Is there a reason this is omitted from the Solr supported types? Is it on the roadmap? Is there an alternative recommended way to index and store Ipv4 and Ipv6 addresses for optimal ran

RE: InetAddressPoint support in Solr or other IP type?

2018-03-23 Thread Mike Cooper
P type? Hi, For IPv4, use TrieIntField with precisionStep=8 For IPv6 https://issues.apache.org/jira/browse/SOLR-6741 There's nothing there yet; you could help out if you are familiar with the codebase. Or you might try something relatively simple involving edge ngrams. ~ David On Th

Way for DataImportHandler to use bind variables

2018-05-02 Thread Mike Konikoff
Is there a way to configure the DataImportHandler to use bind variables for the entity queries? To improve database performance. Thanks, Mike

Re: Outdated information on JVM heap sizes in Solr 8.3 documentation?

2020-02-15 Thread Mike Drob
Erick, Can you drop a link to that Jira here after you create it? Many thanks, Mike On Fri, Feb 14, 2020 at 6:05 PM Erick Erickson wrote: > I just read that page over and it looks way out of date. I’ll raise > a JIRA. > > > On Feb 14, 2020, at 2:55 PM, Walter Underwood > w

Is this a bug? Wildcard with PatternReplaceFilterFactory

2020-02-21 Thread Mike Phillips
Is this a bug? Wildcard with PatternReplaceFilterFactory Attempting to normalize left and right single and double quotes for searches ‘   Left single quotation mark    '    Single quote ’   Right single quotation mark   '    Single quote “   Left double quotation mark   

Re: Is this a bug? Wildcard with PatternReplaceFilterFactory

2020-02-21 Thread Mike Phillips
s: rod’s rods rod s And querying on field:”*Rod’s*” works just fine. I’m using 8.x, and when I add “&debug=query” to the URL, I see: { "responseHeader": { "status": 0, "QTime": 10, "params": { "q": "eoe:\"*Rod's*\"", "d

SolrCloud location for solr.xml

2020-02-28 Thread Mike Drob
ed in zookeeper) * Loading solr.xml from a local solr home rather than zookeeper Much appreciated! Thanks, Mike

Re: Apache Solr 8.4.1 Basic Authentication

2020-03-27 Thread Mike Phillips
art of the request but assuming you were already going to a valid URL. On 3/26/2020 3:59 PM, Altamirano, Emmanuel wrote: Thank you so much for replying my email Mike. I did use now the base64 to encode user and password but now Solr doesn’t undertint the credentials: {Accept=[application/json], Co

Re: Fuzzy search not working

2020-04-14 Thread Mike Drob
Solr query, maybe somebody else on the list would know. But at the end of the day, like Wunder said, you might want a prefix query based on what you're describing. Mike On Mon, Apr 13, 2020 at 6:01 PM Deepu wrote: > Corrected Typo mistake. > > Hi Team, > > We have 8 tex

Re: Possible issue with Stemming and nouns ended with suffix 'ion'

2020-04-30 Thread Mike Drob
Is this worth filing a bug/suggestion to the folks over at snowballstem.org? On Thu, Apr 30, 2020 at 4:08 PM Audrey Lorberfeld - audrey.lorberf...@ibm.com wrote: > I agree with Erick. I think that's just how the cookie crumbles when > stemming. If you have some time on your hands, you can integr

Re: Possible issue with Stemming and nouns ended with suffix 'ion'

2020-05-01 Thread Mike Drob
Jhonny, Are you planning on reporting the issue to snowball, or would you prefer one of us take care of it? If you do report it, please share the link to the issue or mail archive back here so that we know when it is resolved and can update our dependencies. Thanks, Mike On Thu, Apr 30, 2020 at

Re: Possible issue with Stemming and nouns ended with suffix 'ion'

2020-05-01 Thread Mike Drob
want to use their expertise rather than relying on my own. Mike On Fri, May 1, 2020 at 10:35 AM Audrey Lorberfeld - audrey.lorberf...@ibm.com wrote: > Unless I'm misunderstanding the bug in question, there is no bug. What you > are observing is simply just how things get ste

Re: Download a pre-release version? 8.6

2020-05-15 Thread Mike Drob
We could theoretically include this in a 8.5.2 version which should be released soon. The change looks minimally risky to backport? On Fri, May 15, 2020 at 3:43 PM Jan Høydahl wrote: > Check Jenkins: > https://builds.apache.org/view/L/view/Lucene/job/Solr-Artifacts-8.x/lastSuccessfulBuild/artifa

Re: Solr 8.5.1 startup error - lengthTag=109, too big.

2020-05-26 Thread Mike Drob
or PKCS12) Mike On Sat, May 23, 2020 at 10:11 PM Zheng Lin Edwin Yeo wrote: > Hi, > > I'm trying to upgrade from Solr 8.2.1 to Solr 8.5.1, with Solr SSL > Authentication and Authorization. > > However, I get the following error when I enable SSL. The Solr itself can > s

[ANNOUNCE] Apache Solr 8.5.2 released

2020-05-26 Thread Mike Drob
26 May 2020, Apache Solr™ 8.5.2 available The Lucene PMC is pleased to announce the release of Apache Solr 8.5.2 Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted sea

Re: Master Slave Terminology

2020-06-17 Thread Mike Drob
Hi Jan, Can you link to the discussion? I searched the dev list and didn’t see anything, is it on slack or a jira or somewhere else? Mike On Wed, Jun 17, 2020 at 1:51 AM Jan Høydahl wrote: > Hi Kaya, > > Thanks for bringing it up. The topic is already being discussed by > de

Re: [EXTERNAL] Re: Getting rid of Master/Slave nomenclature in Solr

2020-06-18 Thread Mike Drob
can’t tell them that they’re not confused. Especially when they’re working with others who have less Solr experience than we do and are less familiar with the intricacies. Primary/Replica seems acceptable. Coordinator instead of Overseer seems acceptable. Would love to see this in 9.0! Mike On

Re: [EXTERNAL] Getting rid of Master/Slave nomenclature in Solr

2020-06-24 Thread Mike Drob
the suggestion of "guide/follower" Mike On Wed, Jun 24, 2020 at 6:30 AM Bernd Fehling < bernd.fehl...@uni-bielefeld.de> wrote: > I'm following this thread now for a while and I can understand > the wish to change some naming/wording/speech in one or the other > pro

Re: Adding solr-core via maven fails

2020-07-02 Thread Mike Drob
Does it fail similarly on 8.5.0 and .1? On Thu, Jul 2, 2020 at 6:38 AM Erick Erickson wrote: > There have been some issues with Maven, see: > https://issues.apache.org/jira/browse/LUCENE-9170 > > However, we do not officially support Maven builds, they’re there as a > convenience, so there may s

Re: Term too complex for spellcheck.q param

2020-10-07 Thread Mike Drob
Right now the only solution is to use a shorter term. In a fuzzy query you could also try using a lower edit distance e.g. term~1 (default is 2), but I’m not sure what the syntax for a spellcheck would be. Mike On Wed, Oct 7, 2020 at 2:59 PM gnandre wrote: > Hi, > > I am getting

Folding Repeated Letters

2020-10-08 Thread Mike Drob
, and I think I'd have to set up a bunch of patterns inline for it? Mike

Re: Folding Repeated Letters

2020-10-08 Thread Mike Drob
t;, > "pattern": "(.)\\1+", > "replacement": "$1" > } > ] > } > } > ] > } > > This finds a match... > > http:/

Re: Solr dependency update at Apache Beam - which versions should be supported

2020-10-27 Thread Mike Drob
gh about Beam to tell you where on the spectrum your use will fall. I'm not sure if this was helpful or not, but maybe it is a nudge in the right direction. Good luck, Mike On Tue, Oct 27, 2020 at 11:09 AM Piotr Szuberski < piotr.szuber...@polidea.com> wrote: > Hi, > > W

Re: download binary files will not uncompress

2020-11-03 Thread Mike Drob
Can you check the signatures to make sure your downloads were not corrupted? I just checked and was able to download and uncompress both of them. Also, depending on your version of tar, you don't want the - for your flags... tar xf solr-8.6.3.tgz Mike On Tue, Nov 3, 2020 at 4:15 PM James

Re: download binary files will not uncompress

2020-11-03 Thread Mike Drob
> jar@jarfx ~/download $ tar xvf solr-8.6.3.tgz > > gzip: stdin: not in gzip format > tar: Child returned status 1 > tar: Error is not recoverable: exiting now > > > James A. Rome > 116 Claymore Lane > Oak Ridge, TN 37830-7674 > 865 482-5643; Cell: 865 566-7991 >

Re: solr 8.6.3 and noggit

2020-11-20 Thread Mike Drob
you're using an older SolrJ against a newer Solr server (or vice versa). Mike On Fri, Nov 20, 2020 at 2:25 PM Susmit Shukla wrote: > Hi, > got this error using streaming with solrj 8.6.3 . does it use noggit-0.8. > It was not mentioned in dependencies > https://github.com/apache

Highlighting

2019-04-15 Thread Mike Phillips
I don't understand why highlighting does not return anything but the document id. I created a core imported all my data, everything seems like it should be working. From reading the documentation I expect it to show me highlight information for assetName around Potter, but I never get anything bu

Modify partial configsets using API

2019-05-08 Thread Mike Drob
granular options available. Thanks, Mike

Re: Modify partial configsets using API

2019-05-08 Thread Mike Drob
On 2019/05/08 16:52:52, Shawn Heisey wrote: > On 5/8/2019 10:50 AM, Mike Drob wrote: > > Solr Experts, > > > > Is there an existing API to modify just part of my configset, for example > > synonyms or stopwords? I see that there is the schema API, but that is &

Re: SPLITSHARD - data loss of child documents

2020-12-17 Thread Mike Drob
I was under the impression that split shard doesn’t work with child documents, if that is missing from the ref guide we should update it On Thu, Dec 17, 2020 at 4:30 AM Nussbaum, Ronen wrote: > Hi Everyone, > > We're using version 8.6.1 with nested documents. > I used the SPLITSHARD API and afte

Re: Converting a collection name to an alias

2021-01-07 Thread Mike Drob
I believe you may be able to use that command (or some combination of create alias commands) to create an alias from A to A, and then in the future when you want to change it you can have Alias A to collection B (assuming this is the point of the alias in the first place). On Thu, Jan 7, 2021 at 1

Re: Cursor Performance Issue

2021-01-13 Thread Mike Drob
You should be using docvalues on your id, but note that switching this would require a reindex. On Wed, Jan 13, 2021 at 6:04 AM Ajay Sharma wrote: > Hi All, > > I have used cursors to search and export documents in solr according to > > https://lucene.apache.org/solr/guide/6_6/pagination-of-resu

Re: NullPointerException in Graph Traversal nodes streaming expression

2021-01-21 Thread Mike Drob
Can you provide a sample expression that would be able to reproduce this? Are you able to try a newer version by chance - I know we've fixed a few NPEs recently, maybe https://issues.apache.org/jira/browse/SOLR-14700 On Thu, Jan 21, 2021 at 4:13 PM ufuk yılmaz wrote: > Solr version 8.4. I’m gett

Re: Solr 8.7.0 memory leak?

2021-01-27 Thread Mike Drob
Are you running these in docker containers? Also, I’m assuming this is a typo but just in case the setting is Xmx :) Can you share the OOM stack trace? It’s not always running out of memory, sometimes Java throws OOM for file handles or threads. Mike On Wed, Jan 27, 2021 at 10:00 PM Luke

Re: Apache Solr Reference Guide isn't accessible

2021-02-01 Thread Mike Drob
Hi Dorion, We are currently working with our infra team to get these restored. In the meantime, the 8.4 guide is still available at https://lucene.apache.org/solr/guide/8_4/ and are hopeful that the 8.8 guide will be back up soon. Thank you for your patience. Mike On Mon, Feb 1, 2021 at 1:58 PM

Re: Ghost Documents or Shards out of Sync

2021-02-01 Thread Mike Drob
To expand on what Jason suggested, if the issue is the non-deterministic ordering due to staggered commits per replica, you may have more consistency with TLOG replicas rather than the NRT replicas. In this case, the underlying segment files should be identical and lead to more predictable results.

Re: Asymmetric Key Size not sufficient

2021-02-14 Thread Mike Drob
Future vulnerability reports should be sent to secur...@apache.org so that they can be resolved privately. Thank you On Fri, Feb 12, 2021 at 10:17 AM Ishan Chattopadhyaya < ichattopadhy...@gmail.com> wrote: > Recent versions of Solr use 2048. > > https://github.com/apache/lucene-solr/blob/branch

Re: Partial update bug on solr 8.8.0

2021-03-02 Thread Mike Drob
This looks like a bug that is already fixed but not yet released in 8.9 https://issues.apache.org/jira/plugins/servlet/mobile#issue/SOLR-13034 On Tue, Mar 2, 2021 at 6:27 AM Mohsen Saboorian wrote: > Any idea about this post? > https://stackoverflow.com/q/66335803/141438 > > Regards. >

Re: Investigating Seeming Deadlock

2021-03-05 Thread Mike Drob
Were you having any OOM errors beforehand? If so, that could have caused some GC of objects that other threads still expect to be reachable, leading to these null monitors. On Fri, Mar 5, 2021 at 12:55 PM Stephen Lewis Bianamara < stephen.bianam...@gmail.com> wrote: > Hi SOLR Community, > > I'm i

Re: indexing db records via SolrJ

2015-03-16 Thread mike st. john
Take a look at some of the integrations people are using with apache storm, we do something similar on a larger scale , having created a pgsql spout and having a solr indexing bolt. -msj On Mon, Mar 16, 2015 at 11:08 AM, Hal Roberts < hrobe...@cyber.law.harvard.edu> wrote: > We import anywher

Re: UpdateProcessor as a batch

2016-11-03 Thread mike st. john
maybe introduce a distributed queue such as apache ignite, hazelcast or even redis. Read from the queue in batches, do your lookup then index the same batch. just a thought. Mike St. John. On Nov 3, 2016 3:58 PM, "Erick Erickson" wrote: > I thought we might be talking pa

creating collections dynamically.

2013-11-08 Thread mike st. john
Is there any way to create collections dynamically. Having some issues using collections api, need to pass dataDir etc to the cores doesn't seem to work correctly? thanks. msj

Re: creating collections dynamically.

2013-11-08 Thread mike st. john
thanks shawn, i'll give it a try. msj On Fri, Nov 8, 2013 at 10:29 PM, Shawn Heisey wrote: > On 11/8/2013 7:39 PM, mike st. john wrote: > >> Is there any way to create collections dynamically. >> >> >> Having some issues using collections api, need

new collection clustering class not found.

2013-11-09 Thread mike st. john
I have a cluster with several collections using the same config in zk, when i add a new collection through the collection api it throws org.apache.solr.common.SolrException: Error loading class 'solr.clustering.ClusteringComponent' when i query all the other collections, clustering works fine, i

Migrating from master/slave to solrcloud.

2014-11-09 Thread mike st. john
Is there a quick way to go from single index master/slave to solrcloud without a full reindex? thanks. Msj

Odd behavior after adding an additional core.

2013-09-05 Thread mike st. john
using solr 4.4 , i used collection admin to create a collection 4shards replication - factor of 1 i did this so i could index my data, then bring in replicas later by adding cores via coreadmin i added a new core via coreadmin, what i noticed shortly after adding the core, the leader of the

collections api setting dataDir

2013-09-06 Thread mike st. john
is there any way to change the dataDir while creating a collection via the collection api?

Re: Odd behavior after adding an additional core.

2013-09-06 Thread mike st. john
you sure you supplied numShards=4 while creating the collection? > > On Fri, Sep 6, 2013 at 12:20 AM, mike st. john wrote: > > using solr 4.4 , i used collection admin to create a collection 4shards > > replication - factor of 1 > > > > i did this so i could index my dat

Re: collections api setting dataDir

2013-09-07 Thread mike st. john
see: http://wiki.apache.org/solr/CoreAdmin#CREATE > > FWIW, > Erick > > > On Fri, Sep 6, 2013 at 4:23 PM, mike st. john wrote: > > > is there any way to change the dataDir while creating a collection via > the > > collection api? > > >

multiple update processor chains.

2013-09-08 Thread mike st. john
is it possible to have multiple run by default? i've tried adding multiple update.chains for the UpdateRequestHandler but it didn't seem to work. wondering if its even possible. Thanks msj

Re: multiple update processor chains.

2013-09-08 Thread mike st. john
ughts.com/ > LinkedIn: http://www.linkedin.com/in/alexandrerafalovitch > - Time is the quality of nature that keeps events from happening all at > once. Lately, it doesn't seem to be working. (Anonymous - via GTD book) > > > On Mon, Sep 9, 2013 at 5:43 AM, mike st. john wrote:

Re: multiple update processor chains.

2013-09-09 Thread mike st. john
. Lately, it doesn't seem to be working. (Anonymous - via GTD book) > > > On Mon, Sep 9, 2013 at 1:51 PM, mike st. john wrote: > > > Alexandre, > > > > it was setup with multiple processors and working fine. I just noticed > in > > the docs, it mentio

Re: collections api setting dataDir

2013-09-09 Thread mike st. john
7/2013 2:25 PM, mike st. john wrote: > > yes the collections api ignored it,what i ended up doing, was just > > building out some fairness in regards to creating the cores and calling > > coreadmin to create the cores, seemed to work ok. Only issue i'm having > >

Re: Updating clusterstate from the zookeeper

2013-04-19 Thread mike st. john
you can use the eclipse plugin for zookeeper. http://www.massedynamic.org/mediawiki/index.php?title=Eclipse_Plug-in_for_ZooKeeper -Msj. On Fri, Apr 19, 2013 at 1:53 PM, Michael Della Bitta < michael.della.bi...@appinions.com> wrote: > I would like to know the answer to this as well. > > Mich

setting the collection in cloudsolrserver without using setdefaultcollection.

2013-05-21 Thread mike st. john
Is there any way to set the collection without passing setDefaultCollection in cloudsolrserver? I'm using cloudsolrserver with spring, and would like to autowire it. Thanks msj

atomic updates fail with solrcloud , and real time get throwing NPE

2013-03-03 Thread mike st. john
atomic updates are failing in solrcloud , unless the update is sent to the shard where the doc resides. Real time get is throwing NPE when run without distrib=false tried with 4.1 and 4.2 snapshot. Any ideas? Thanks. msj

Having an issue where atomic updates are treated as new docs running in solrcloud on 4.1

2013-03-04 Thread mike st. john
; if the document is not located on the url i'm sending the update to, implying that its not distributing the updates to the correct servers. thanks for any help. Mike

Re: Having an issue where atomic updates are treated as new docs running in solrcloud on 4.1

2013-03-04 Thread mike st. john
Hi michael, ah, thats seems to be the issue, its set to implicit. This install originally was a 4.0 install, when it moved to 4.1 , the problems started. Is there an easy way to change the router to compositeId? -Mike Michael Della Bitta wrote: Hi Mike, Are you sure sending it to the

Re: Having an issue where atomic updates are treated as new docs running in solrcloud on 4.1

2013-03-04 Thread mike st. john
Mark, the odd piece here i think was, this was a 4.0 collection numShards=4 etc etc. moved to 4.1, i would assume the doc router would have been set to compositeId, not implicit, or is the move from 4.0 to 4.1 a complete rebuild from the collections up? -Mike Mark Miller wrote: On Mar

Re: Having an issue where atomic updates are treated as new docs running in solrcloud on 4.1

2013-03-04 Thread mike st. john
thanks mark. That worked great. -Mike Mark Miller wrote: Honestly, I'm not sure. Yonik did some testing around upgrading from 4.0 to 4.1 and said this was fine - but it sounds like perhaps there are some hitches. - Mark On Mar 4, 2013, at 3:35 PM, "mike st. john" wrote

Re: inconsistent number of results returned in solr cloud

2013-03-08 Thread mike st. john
check for dup id's a quick way is to facet using the id as a field and set the mincount to 2. -Mike Hardik Upadhyay wrote: HI I am using solr 4.0 (Not BETA), and have created 2 shard 2 replica configuration. But when I query solr with filter query it returns inconsistent result

writing doc to another collection from UpdateReqeustProcessor

2013-03-11 Thread mike st. john
Whats the best approach in writing the current doc inside an UpdateRequestProcessor to another collection ? Would i just call up CloudSolrServer and process it as i normally would in solrj? Thanks msj

Best way to backup solr?

2013-03-16 Thread mike st. john
Hi, Whats the best option for backing up solrcloud, replicate each shard ? Thanks msj

Lowercase-ing everything but acronyms

2020-09-09 Thread Dunham-Wilkie, Mike CITZ:EX
Is there a way to do this using tokenizers and filters? Thanks Mike Mike Dunham-Wilkie | Senior Spatial Data Administration Analyst | PHONE... 778-676-1791 Data Systems & Services - Digital Platforms and Data Division - Ministry of Citizens' Services For faster response and/or f

RE: Why use a different analyzer for "index" and "query"?

2020-09-10 Thread Dunham-Wilkie, Mike CITZ:EX
. Google "solr synonyms index vs query" Mike -Original Message- From: Steven White Sent: September 10, 2020 8:19 AM To: solr-user@lucene.apache.org Subject: Why use a different analyzer for "index" and "query"? [EXTERNAL] This email came from an external sou

<    6   7   8   9   10   11