Re: Phonetic analysis with the spell-check component?

2009-04-27 Thread Shalin Shekhar Mangar
anymore. But if we could have an option to store the original words as well into the spell check index, we could return them as suggestions. Do you mind creating an Jira issue so that we don't forget about this? -- Regards, Shalin Shekhar Mangar.

Re: UTF8 compatibility

2009-04-29 Thread Shalin Shekhar Mangar
to accept UTF-8 for quering. Instructions for tomcat at http://wiki.apache.org/solr/SolrTomcat#head-20147ee4d9dd5ca83ed264898280ab60457847c4 -- Regards, Shalin Shekhar Mangar.

Re: function query scoring

2009-04-29 Thread Shalin Shekhar Mangar
as an or between the term query and the function query. That is why documents matching the term query are ranked higher due to the tf-idf score. -- Regards, Shalin Shekhar Mangar.

Re: stress tests to DIH and deduplication patch

2009-04-29 Thread Shalin Shekhar Mangar
that it might happen? -- Regards, Shalin Shekhar Mangar.

Re: limit on query size?

2009-04-29 Thread Shalin Shekhar Mangar
to them. -- Regards, Shalin Shekhar Mangar.

Re: Unique Identifiers

2009-04-30 Thread Shalin Shekhar Mangar
template=table1-${table1.pk} / -- Regards, Shalin Shekhar Mangar.

Re: Stats field with decimal values

2009-04-30 Thread Shalin Shekhar Mangar
: java.lang.StringIndexOutOfBoundsException: String index out of range: 2 Can you post the complete stack trace? -- Regards, Shalin Shekhar Mangar.

Re: Data Import Handler Scheduling

2009-05-01 Thread Shalin Shekhar Mangar
http://localhost:8983/solr/core0/dataimport?command=full-import If scheduling possible, can you let me know how to that? No built-in support but the usual way is to use cron jobs (or task scheduler in windows) to hit the full-import url through wget or curl. -- Regards, Shalin Shekhar Mangar.

Re: fieldType without tokenizer

2009-05-04 Thread Shalin Shekhar Mangar
On Mon, May 4, 2009 at 9:28 PM, sunnyfr johanna...@gmail.com wrote: Hi, I would like to create a field without tokenizer but I've an error, You can use KeywordTokenizer which does not do any tokenization. -- Regards, Shalin Shekhar Mangar.

Re: DIH ConcurrentModificationException

2009-05-05 Thread Shalin Shekhar Mangar
be put somewhere? ciao, Walter -- - Noble Paul | Principal Engineer| AOL | http://aol.com -- Regards, Shalin Shekhar Mangar.

Re: Getting access to current core's conf dir

2009-05-05 Thread Shalin Shekhar Mangar
On Tue, May 5, 2009 at 11:11 AM, Amit Nithian anith...@gmail.com wrote: I am trying to get at the configuration directory in an implementation of the SolrEventListener. Implement SolrCoreAware and use solrCore.getResourceLoader().getConfigDir() -- Regards, Shalin Shekhar Mangar.

Re: Spellcheck.build

2009-05-05 Thread Shalin Shekhar Mangar
-- Regards, Shalin Shekhar Mangar.

Re: Solrconfig.xml

2009-05-08 Thread Shalin Shekhar Mangar
online somewhere (e.g. on pastebin.com)? -- Regards, Shalin Shekhar Mangar.

Re: Control segment size

2009-05-08 Thread Shalin Shekhar Mangar
, Shalin Shekhar Mangar.

Re: French and SpellingQueryConverter

2009-05-08 Thread Shalin Shekhar Mangar
parameter for specifying the spelling query, then the field's analyzer will be used (in this case, FrenchAnalyzer). If you use the q parameter, then the SpellingQueryConverter is used. -- Regards, Shalin Shekhar Mangar.

Re: French and SpellingQueryConverter

2009-05-11 Thread Shalin Shekhar Mangar
Shekhar Mangar.

Re: STop dataimport full-import

2009-05-11 Thread Shalin Shekhar Mangar
is committed when the servlet container is shutdown. Because a full-import starts off by issuing a delete-all query, all the data is lost. With Solr 1.4 (trunk), abort will roll back to the last commit. So it won't remove the documents automatically. -- Regards, Shalin Shekhar Mangar.

Re: Control segment size

2009-05-11 Thread Shalin Shekhar Mangar
than others. What you saw originally must have been a segment merge which is normal and happens in the course of indexing. I don't think there's a way to avoid that other than to have a ridiculously high mergeFactor (which will affect search performance). -- Regards, Shalin Shekhar Mangar.

Re: Restarting tomcat deletes all Solr indexes

2009-05-12 Thread Shalin Shekhar Mangar
appreciate if someone could direct me fixing this. Thanks, KK. -- Andrew Klochkov -- Regards, Shalin Shekhar Mangar.

Re: Newbie question

2009-05-12 Thread Shalin Shekhar Mangar
the complete data for a document. Does that answer your question? -- Regards, Shalin Shekhar Mangar.

Re: Replication master+slave

2009-05-12 Thread Shalin Shekhar Mangar
for this solr (meaning same solr url is master and slave of itself)? If yes, that is not a valid configuration. -- Regards, Shalin Shekhar Mangar.

Re: Replication master+slave

2009-05-13 Thread Shalin Shekhar Mangar
#setXIncludeAware%28boolean%29 -Bryan On May 12, 2009, at May 12, 11:43 AM, Shalin Shekhar Mangar wrote: On Tue, May 12, 2009 at 10:42 PM, Bryan Talbot wrote: For replication in 1.4, the wiki at http://wiki.apache.org/solr/SolrReplication says that a node can

Re: Query syntax

2009-05-14 Thread Shalin Shekhar Mangar
? Should all of 22, 3000676 etc be present in site_id or just one match is alright? -- Regards, Shalin Shekhar Mangar.

Re: Query syntax

2009-05-14 Thread Shalin Shekhar Mangar
of these 23243455 , 245, 3457676 . _ From: Shalin Shekhar Mangar [mailto:shalinman...@gmail.com] Sent: Thursday, May 14, 2009 5:43 PM To: solr-user@lucene.apache.org; cra...@ceiindia.com Subject: Re: Query syntax On Thu, May 14, 2009 at 5:20 PM, Radha C. cra...@ceiindia.com wrote

Re: irrelevant search results - encode issue.

2009-05-16 Thread Shalin Shekhar Mangar
need to encode the parameter values (i.e. after the equals operator). Using UTF-8 encoding is fine. So the correct url will look like the following: q=art_id:queryTextstart=0rows=10sort=score desc -- Regards, Shalin Shekhar Mangar.

Re: Solr statistics of top searches and results returned

2009-05-20 Thread Shalin Shekhar Mangar
on average. You can see the statistics page (see the /select section) which will tell you average queries per second and average time per query. There's no option to show top searches as of now. -- Regards, Shalin Shekhar Mangar.

Re: Solr statistics of top searches and results returned

2009-05-20 Thread Shalin Shekhar Mangar
an issue open which has more details: https://issues.apache.org/jira/browse/SOLR-1101 -- Regards, Shalin Shekhar Mangar.

Re: dataimport.properties; configure writable location?

2009-05-20 Thread Shalin Shekhar Mangar
, Shalin Shekhar Mangar.

Re: Creating a distributed search in a searchComponent

2009-05-21 Thread Shalin Shekhar Mangar
SolrDispatchFilter and add the parameters before Solr processes the query. -- Regards, Shalin Shekhar Mangar.

Re: Creating a distributed search in a searchComponent

2009-05-21 Thread Shalin Shekhar Mangar
Also look at SOLR-565 and see if that helps you. https://issues.apache.org/jira/browse/SOLR-565 On Thu, May 21, 2009 at 9:58 PM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: On Wed, May 20, 2009 at 10:59 PM, Nick Bailey nicholas.bai...@rackspace.com wrote: Hi, I am wondering

Re: Solr statistics of top searches and results returned

2009-05-22 Thread Shalin Shekhar Mangar
as a running statistic. -- Regards, Shalin Shekhar Mangar.

Re: what does the version parameter in the query mean?

2009-05-22 Thread Shalin Shekhar Mangar
version parameter/value. You do not need to add it yourself. -- Regards, Shalin Shekhar Mangar.

Re: No sanity checks before replicating files?

2009-05-22 Thread Shalin Shekhar Mangar
of Solr 1.4 replication when the slave index is fresher then the master one. Damien -- - Noble Paul | Principal Engineer| AOL | http://aol.com -- Regards, Shalin Shekhar Mangar.

Re: How to use DIH to index attributes in xml file

2009-05-22 Thread Shalin Shekhar Mangar
and /merchantProduct/@mid -- Regards, Shalin Shekhar Mangar.

Re: Index size concerns

2009-05-25 Thread Shalin Shekhar Mangar
documents. -- Regards, Shalin Shekhar Mangar.

Re: Lucene Query to Solr query

2009-05-25 Thread Shalin Shekhar Mangar
that might change in future releases. Also, most (none?) Query objects do not have a parseable toString representation so it may not even work at all. -- Regards, Shalin Shekhar Mangar.

Re: issues with shards

2009-05-27 Thread Shalin Shekhar Mangar
://www.lucidimagination.com/ Search the Lucene ecosystem (Lucene/Solr/Nutch/Mahout/Tika/Droids) using Solr/Lucene: http://www.lucidimagination.com/search -- Regards, Shalin Shekhar Mangar.

Re: Substring in filter query...

2009-05-27 Thread Shalin Shekhar Mangar
the categories as a string, you can index them as separate values in a multi-valued field. Then the query will look like: q=Timexfq=category:Digital -- Regards, Shalin Shekhar Mangar.

Re: Index replication without HTTP

2009-05-27 Thread Shalin Shekhar Mangar
. -- Regards, Shalin Shekhar Mangar.

Re: 1.4 Replication

2009-05-27 Thread Shalin Shekhar Mangar
made configurable. -- Regards, Shalin Shekhar Mangar.

Re: lock issue

2009-05-28 Thread Shalin Shekhar Mangar
Shekhar Mangar.

Re: Dismax handler phrase matching question

2009-06-02 Thread Shalin Shekhar Mangar
dui california should return all federal results for 'dui' also along with california results. Perhaps you just need to create your query in such a way that both match? q=title:(dui california) state:(dui california) state:federal -- Regards, Shalin Shekhar Mangar.

Re: NPE in dataimport.DebugLogger.peekStack (DIH Development Console)

2009-06-02 Thread Shalin Shekhar Mangar
Shekhar Mangar.

Re: Dismax handler phrase matching question

2009-06-03 Thread Shalin Shekhar Mangar
not sure if a function query could be used to accomplish this. Any other thoughts? I don't think facet.query and function queries have anything to do with this. Using the dismax params seem to be the right way. -- Regards, Shalin Shekhar Mangar.

Re: NPE in dataimport.DebugLogger.peekStack (DIH Development Console)

2009-06-03 Thread Shalin Shekhar Mangar
This is fixed in trunk. The next nightly build will have this fix. Thanks! On Tue, Jun 2, 2009 at 9:49 PM, Steffen B. s.baumg...@fhtw-berlin.dewrote: Glad to hear that it's not a problem with my setup. Thanks for taking care of it! :) Shalin Shekhar Mangar wrote: On Tue, Jun 2, 2009

Re: SpellCheckComponent: queryAnalyzerFieldType

2009-06-04 Thread Shalin Shekhar Mangar
On Thu, Jun 4, 2009 at 7:24 PM, Michael Ludwig m...@as-guides.com wrote: Shalin Shekhar Mangar wrote: | If you use spellcheck.q parameter for specifying | the spelling query, then the field's analyzer will | be used [...] If you use the q parameter, then the | SpellingQueryConverter is used

Re: using UpdateRequestProcessor from a custom analyzer

2009-06-05 Thread Shalin Shekhar Mangar
)? No, UpdateRequestProcessor is invoked before analyzers. I don't think they can collaborate like that. -- Regards, Shalin Shekhar Mangar.

Re: spell checking

2009-06-05 Thread Shalin Shekhar Mangar
On Thu, Jun 4, 2009 at 7:26 PM, Walter Underwood wunderw...@netflix.comwrote: query suggest --wunder How about DidYouMeanComponent? -- Regards, Shalin Shekhar Mangar.

Re: Customize facet.method

2009-06-05 Thread Shalin Shekhar Mangar
the average over the resulting numbers. For simply calculating averages StatsComponent can be used http://wiki.apache.org/solr/StatsComponent However, since you need to do some calculations, I think you can write a custom FunctionQuery/ValueSourceParser to do the job. -- Regards, Shalin Shekhar

Re: where to find solr help/consultant

2009-06-05 Thread Shalin Shekhar Mangar
, etc. IRC is rather quite. Thank you :) Perhaps, one of the companies/individuals mentioned at the following can help: http://wiki.apache.org/solr/Support -- Regards, Shalin Shekhar Mangar.

Re: Does Solr know what host and port it is running on?

2009-06-05 Thread Shalin Shekhar Mangar
. There's an issue open at https://issues.apache.org/jira/browse/SOLR-727 -- Regards, Shalin Shekhar Mangar.

Re: Filter query results do not match facet counts

2009-06-05 Thread Shalin Shekhar Mangar
field is named cat, right? Can you please post the query you were using to get the facet count? Also, what is the type of cat in schema.xml? -- Regards, Shalin Shekhar Mangar.

Re: Error sorting random field with June 1, 2009 Solr 1.4 nightly

2009-06-06 Thread Shalin Shekhar Mangar
=12713271page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_12713271 -- Regards, Shalin Shekhar Mangar.

Re: NPE on MERGEINDEXES

2009-06-06 Thread Shalin Shekhar Mangar
the latest trunk. Solr was started: $ cd example $ java -Dsolr.solr.home=./multicore -jar start.jar Thank you, Koji -- Regards, Shalin Shekhar Mangar.

Re: Custom Values in dataimport.properties

2009-06-06 Thread Shalin Shekhar Mangar
that feature or you can write an EventListener which writes this version to another file of your choice. -- Regards, Shalin Shekhar Mangar.

Re: Refresh synonyms.txt file via replication

2009-06-06 Thread Shalin Shekhar Mangar
is always reloaded. Can you try using the analysis.txt on a field which has the SynonymFilterFactory enabled to see if the new file is indeed not getting used? -- Regards, Shalin Shekhar Mangar.

Re: query issue /special character and case

2009-06-06 Thread Shalin Shekhar Mangar
-20147ee4d9dd5ca83ed264898280ab60457847c4 You can try using the analysis.jsp on the text field with this token and see how it is being analyzed. See if that gives some hints. -- Regards, Shalin Shekhar Mangar.

Re: spellcheck /too many open files

2009-06-09 Thread Shalin Shekhar Mangar
limit on your system. -- Regards, Shalin Shekhar Mangar.

Re: spellcheck /too many open files

2009-06-09 Thread Shalin Shekhar Mangar
). -- Regards, Shalin Shekhar Mangar.

Re: spellcheck /too many open files

2009-06-09 Thread Shalin Shekhar Mangar
and the component will use the analyzer configured for that field type. -- Regards, Shalin Shekhar Mangar.

Re: Multiple queries in one, something similar to a SQL union

2009-06-09 Thread Shalin Shekhar Mangar
://issues.apache.org/jira/browse/SOLR-1093 -- Regards, Shalin Shekhar Mangar.

Re: Trie Patches- Backportable?

2009-06-09 Thread Shalin Shekhar Mangar
this was covered but missed some of the details. See the javadocs. It has the link to the paper in which it is described in more detail. http://hudson.zones.apache.org/hudson/job/Lucene-trunk/javadoc/contrib-queries/org/apache/lucene/search/trie/package-summary.html -- Regards, Shalin Shekhar

Re: fq vs. q

2009-06-09 Thread Shalin Shekhar Mangar
contains many different types of documents. It is just that the intersection may need to do more or less work. -- Regards, Shalin Shekhar Mangar.

Re: filterCache/@size, queryResultCache/@size, documentCache/@size

2009-06-09 Thread Shalin Shekhar Mangar
? It will be three. If you want to cache separately, send them as separate fq parameters. -- Regards, Shalin Shekhar Mangar.

Re: fq vs. q

2009-06-09 Thread Shalin Shekhar Mangar
query... part. I meant that both kinds of use-cases are common. -- Regards, Shalin Shekhar Mangar.

Re: Problem using db-data-config.xml

2009-06-11 Thread Shalin Shekhar Mangar
create documents. -- Regards, Shalin Shekhar Mangar.

Re: Build Failed

2009-06-11 Thread Shalin Shekhar Mangar
compiled on August 29 2007 Buildfile: build.xml Detected Java version: 1.6 in: /usr/lib/jvm/java-1.5.0-gcj-4.2-1.5.0.0/jre You are using GCJ. Switch to Sun JDK. -- Regards, Shalin Shekhar Mangar.

Re: DataImportHandler backwards compatibility

2009-06-11 Thread Shalin Shekhar Mangar
the import of RollbackUpdateCommand and recompile. -- Regards, Shalin Shekhar Mangar.

Re: fq vs. q

2009-06-12 Thread Shalin Shekhar Mangar
on analysis, scoring and faceting aspects. -- Regards, Shalin Shekhar Mangar.

Re: Custom Request handler Error:

2009-06-12 Thread Shalin Shekhar Mangar
://localhost:8983/mysearch searching also working fine. But, these are not run through my custom handler. Specify the full package to your handler class. Packages starting with solr are loaded in a special way. -- Regards, Shalin Shekhar Mangar.

Re: Efficient Sharding with date sorted queries

2009-06-12 Thread Shalin Shekhar Mangar
a specific number of results from a shard, make a query to that shard alone. -- Regards, Shalin Shekhar Mangar.

Re: Strange missing docs when reindexing with threads.

2009-06-12 Thread Shalin Shekhar Mangar
clues? What is the uniqueKey in your schema.xml? Is it possible that those 17494 documents have a common uniqueKey and are therefore getting overwritten? -- Regards, Shalin Shekhar Mangar.

Re: Replication problems on 1.4

2009-06-12 Thread Shalin Shekhar Mangar
, Solr's replication will follow suit. -- Regards, Shalin Shekhar Mangar.

Re: Using The Tomcat Container

2009-06-12 Thread Shalin Shekhar Mangar
smoothly if I were to use Tomcat 6. Does anyone have experiencing with Solr 1.3 and Tomcat 5.5? Can you elaborate on what is not working for you? We use Solr with Tomcat 5.5 and it works fine. -- Regards, Shalin Shekhar Mangar.

Re: fq vs. q

2009-06-12 Thread Shalin Shekhar Mangar
? If not, is there any mechanism to flush the cache when the corresponding result set changes? The date math syntax is translated to a date before a search is performed. NOW is always granular upto seconds (maybe milliseconds, not sure). -- Regards, Shalin Shekhar Mangar.

Re: fq vs. q

2009-06-15 Thread Shalin Shekhar Mangar
not be necessary any more. -- Regards, Shalin Shekhar Mangar.

Re: EmbeddedSolrServer seperate process

2009-06-15 Thread Shalin Shekhar Mangar
uses it. CommonsHttpSolrServer is used by an application to communicate with Solr running in a separate host (or JVM) using HTTP. The start.jar is the jetty servlet container which can be used to host solr. Does that answer your question? -- Regards, Shalin Shekhar Mangar.

Re: Can I use the same index from 1.2.0 to 1.3.0?

2009-06-19 Thread Shalin Shekhar Mangar
, if you have a master/slave setup, upgrade the slaves first. -- Regards, Shalin Shekhar Mangar.

Re: about boosting queries...

2009-06-19 Thread Shalin Shekhar Mangar
for the info Hoss. I've added it to http://wiki.apache.org/solr/SolrRelevancyFAQ -- Regards, Shalin Shekhar Mangar.

Re: howto hook spellcheck component to /select handler

2009-06-19 Thread Shalin Shekhar Mangar
the SpellCheckComponent in the last-components section in the request handler: -- Regards, Shalin Shekhar Mangar.

Re: Auto suggest.. how to do mixed case

2009-06-22 Thread Shalin Shekhar Mangar
lower case terms and store the mixed case terms. Then you can use a prefix query which will return documents (and hence stored field values). -- Regards, Shalin Shekhar Mangar.

Re: Auto suggest.. how to do mixed case

2009-06-22 Thread Shalin Shekhar Mangar
search on shingles 2. Exact (phrase) search on n-grams The regular prefix search also works. The good thing with these is that you can filter and different stored value is also possible. -- Regards, Shalin Shekhar Mangar.

Re: Auto suggest...

2009-06-22 Thread Shalin Shekhar Mangar
was referring to which I said that users may have been misled by this. -- Regards, Shalin Shekhar Mangar.

Re: Data Import Handler

2009-06-22 Thread Shalin Shekhar Mangar
the solrconfig.xml ? -- Regards, Shalin Shekhar Mangar.

Re: Data Import Handler

2009-06-22 Thread Shalin Shekhar Mangar
-c24dc86472fa50f3e87f744d3c80ebd9c31b791c Or, look at the Slashdot feed example at http://wiki.apache.org/solr/DataImportHandler#head-e68aa93c9ca7b8d261cede2bf1d6110ab1725476 -- Regards, Shalin Shekhar Mangar.

Re: Numerical range faceting

2009-06-23 Thread Shalin Shekhar Mangar
-- Regards, Shalin Shekhar Mangar.

Re: Data Import Handler

2009-06-23 Thread Shalin Shekhar Mangar
that indexing failed. You should be able to see some exceptions in the solr log. If you can post them here, we might be able to help you more. -- Regards, Shalin Shekhar Mangar.

Re: Data Import Handler

2009-06-24 Thread Shalin Shekhar Mangar
mysql, download the mysql jdbc driver and add it to the 'lib' directory inside your solr home directory. -- Regards, Shalin Shekhar Mangar.

Re: How do I set up an embedded server with version 1.3.0 ?

2009-06-25 Thread Shalin Shekhar Mangar
it to the wiki too. -- Regards, Shalin Shekhar Mangar.

Re: facets: case and accent insensitive sort

2009-06-26 Thread Shalin Shekhar Mangar
values so if your indexed values are with original case and accents, they will be sorted accordingly. You could use a copyField to store these values into a string type and facet on that. -- Regards, Shalin Shekhar Mangar.

Re: facets: case and accent insensitive sort

2009-06-26 Thread Shalin Shekhar Mangar
Shekhar Mangar.

Re: Query Filter fq with OR operator

2009-06-26 Thread Shalin Shekhar Mangar
, Shalin Shekhar Mangar.

Re: Upgrade to solr 1.4

2009-06-26 Thread Shalin Shekhar Mangar
. Wow, that is good news! Are you also using the java based replication? We deployed 1.4 to all our servers yesterday. Can you tell us which revision you used? -- Regards, Shalin Shekhar Mangar.

Re: plans for switching to maven2 (after 1.4 release)?

2009-06-30 Thread Shalin Shekhar Mangar
agrees to change that, we should just stick with Ant. No use maintaining two build systems. We're pushing artifacts to the official repository so the most common ask by users is covered. -- Regards, Shalin Shekhar Mangar.

Re: query in solr lucene

2009-06-30 Thread Shalin Shekhar Mangar
characters. As Hoss said in a related discussion, this is not supported for a reason. For details on why doing such a thing is not useful see: http://wiki.apache.org/lucene-java/ScoresAsPercentages -- Regards, Shalin Shekhar Mangar.

Re: Combining Distributed Shards

2009-06-30 Thread Shalin Shekhar Mangar
, but want to merge all the indexes so I can terminate the servers. Some information is available at http://wiki.apache.org/solr/MergingSolrIndexes -- Regards, Shalin Shekhar Mangar.

Re: CJKTokenizerFactory seems to work for Korea but not for China and Japan

2009-07-01 Thread Shalin Shekhar Mangar
a request parameter debugQuery=on and post the response? Also, whenever you change the field type (use a different tokenizer etc.), make sure you re-index the documents. -- Regards, Shalin Shekhar Mangar.

Re: Excluding characters from a wildcard query

2009-07-01 Thread Shalin Shekhar Mangar
at the regex query support in lucene (contrib package). I don't think that is supported out of the box in Solr yet. -- Regards, Shalin Shekhar Mangar.

Re: Issue in using numeric values

2009-07-01 Thread Shalin Shekhar Mangar
, is giving 0 results(all results with rank 5 is expected). I think the text type may be removing all numbers. You can see how values which are put in a text type field are analyzed through analysis.jsp on the solr dashboard. -- Regards, Shalin Shekhar Mangar.

Re: Question on Facet Count

2009-07-01 Thread Shalin Shekhar Mangar
*facet.query=large* and so on. -- Regards, Shalin Shekhar Mangar.

<    5   6   7   8   9   10   11   12   13   14   >