Re: Exact word search

2009-08-26 Thread Shalin Shekhar Mangar
one field a copyField of the other. Perform a prefix search on both fields. -- Regards, Shalin Shekhar Mangar.

Re: shingle filter

2009-08-26 Thread Shalin Shekhar Mangar
think you can make the changes in ShingleFilter.fillShingleBuffer(). Create an issue in jira and someone who knows more about shingles can help out. -- Regards, Shalin Shekhar Mangar.

Re: encoding problem

2009-08-26 Thread Shalin Shekhar Mangar
=-Dfile.encoding=UTF-8 either through the GUI or by adding the following to startup.bat: set JAVA_OPTS=-Dfile.encoding=UTF-8 -- Regards, Shalin Shekhar Mangar.

Re: why would a search for a specific field value fail when data is present?

2009-08-25 Thread Shalin Shekhar Mangar
(matching what schema browser reports). Can you please post the field type and field definition of SearchObjectType from schema.xml? Also, can you add debugQuery=on to the request parameters and post the debug output? -- Regards, Shalin Shekhar Mangar.

Re: defining qf in your own request handler

2009-08-25 Thread Shalin Shekhar Mangar
field name=nocommathis can't be the case/field i am expecting this should be index as this can t be the case But that doesn't seem to happen So what seems to happen? You may also want to look at PatternReplaceFilter. -- Regards, Shalin Shekhar Mangar.

Re: defining qf in your own request handler

2009-08-24 Thread Shalin Shekhar Mangar
i defined features and make to be the default search fields, The qf parameter is specific to dismax. Change the query type to dismax by adding: str name=defTypedismax/str -- Regards, Shalin Shekhar Mangar.

Re: Multi-shard query with error on one shard

2009-08-21 Thread Shalin Shekhar Mangar
: https://issues.apache.org/jira/browse/SOLR-1143 -- Regards, Shalin Shekhar Mangar.

Re: Adding a prefix to fields

2009-08-20 Thread Shalin Shekhar Mangar
. Would it be possible to add a prefix to the data that is received? Easiest way is to use TemplateTransformer. The field definition can look like: field column=id template=Article_${entity.id} / -- Regards, Shalin Shekhar Mangar.

Re: Solr Range Query Anomalities

2009-08-20 Thread Shalin Shekhar Mangar
in the 100s. Use a sdouble field type if you want to do range searches on that field. -- Regards, Shalin Shekhar Mangar.

Re: where to get solr 1.4 nightly

2009-08-20 Thread Shalin Shekhar Mangar
can always check out the code and build yourself. The svn repository is still up. -- Regards, Shalin Shekhar Mangar.

Re: MultiCore Queries? are they possible

2009-08-19 Thread Shalin Shekhar Mangar
in one query. -- Regards, Shalin Shekhar Mangar.

Re: Strange error with shards

2009-08-19 Thread Shalin Shekhar Mangar
the data files/folders, and modifying my schema/data-config files. So the core settings are pretty much the same. What did you modify in the schema? All the shards should have the same schema. That exception can come if the uniqueKey is missing/null. -- Regards, Shalin Shekhar Mangar.

Re: Passing a Cookie in SolrJ

2009-08-19 Thread Shalin Shekhar Mangar
pointers you may have. There's no easy way I think. You can extend CommonsHttpSolrServer and override the request method. Copy/paste the code from CommonsHttpSolrServer#request and make the changes. It is not an elegant way but it will work. -- Regards, Shalin Shekhar Mangar.

Re: How to boost fields with many terms against single-term?

2009-08-19 Thread Shalin Shekhar Mangar
for home, see if the QueryElevationComponent can help. -- Regards, Shalin Shekhar Mangar.

Re: Strange error with shards

2009-08-19 Thread Shalin Shekhar Mangar
having a disjoint subset of the complete set of documents. -- Regards, Shalin Shekhar Mangar.

Re: How can i get lucene index format version information?

2009-08-18 Thread Shalin Shekhar Mangar
-version2.9-dev 794238 - 2009-07-15 18:05:08/str helps, i assume that it doesn't implies an index format change The best way to confirm this is to checkout Lucene revision 794238 and look at the CHANGES.txt file. -- Regards, Shalin Shekhar Mangar.

Re: Maximum number of values in a multi-valued field.

2009-08-18 Thread Shalin Shekhar Mangar
ids stored for each product. I guess the number of unique ids across all documents should not be that much? If yes, you may breathe easier. -- Regards, Shalin Shekhar Mangar.

Re: Distributed index

2009-08-18 Thread Shalin Shekhar Mangar
. There are a couple of C# client libraries for Solr. Any tutorials related to this? The Solr wiki is a good place to start looking. http://wiki.apache.org/solr/ Good Luck and welcome to Solr! -- Regards, Shalin Shekhar Mangar.

Re: spellcheck component in 1.4 distributed

2009-08-18 Thread Shalin Shekhar Mangar
thereof) are recorded in the right place. -- Regards, Shalin Shekhar Mangar.

Re: [ANNOUNCEMENT] Newly released book: Solr 1.4 Enterprise Search Server

2009-08-18 Thread Shalin Shekhar Mangar
configuration that will enable you to scale Solr to meet the needs of a high-volume site Sincerely, David Smiley (primary-author) dsmi...@mitre.org Eric Pugh (co-author) ep...@opensourceconnections.com -- Regards, Shalin Shekhar Mangar.

Re: structural preserving

2009-08-16 Thread Shalin Shekhar Mangar
/solr/HowToContribute -- Regards, Shalin Shekhar Mangar.

Re: Cannot get solr 1.3.0 to run properly with plesk 9.2.1 on CentOS

2009-08-15 Thread Shalin Shekhar Mangar
-- Regards, Shalin Shekhar Mangar.

Re: Which server parameters to tweak in Solr if I expect heavy writes and light reads?

2009-08-15 Thread Shalin Shekhar Mangar
as possible (disable auto commit). -- Regards, Shalin Shekhar Mangar.

Re: switching between requestHandler

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

Re: Whats the maximum limit for Dynamic Fields?

2009-08-15 Thread Shalin Shekhar Mangar
On Sun, Aug 16, 2009 at 8:43 AM, Ninad Raut hbase.user.ni...@gmail.comwrote: Hi, I want to know whats the maximum limit to how many dynamic fields could be stored per document. There is no limit. -- Regards, Shalin Shekhar Mangar.

Re: defaultOperator=AND and queries with (

2009-08-14 Thread Shalin Shekhar Mangar
( for grouping. Anyone have any ideas for a workaround ? Can you try adding debugQuery=on to the request and post the details here? -- Regards, Shalin Shekhar Mangar.

Re: Solr 1.4 Replication scheme

2009-08-14 Thread Shalin Shekhar Mangar
on the slave only if a commit happened on the master (i.e. the index was actually changed on the master). -- Regards, Shalin Shekhar Mangar.

Re: Writing own request handler tutorial

2009-08-14 Thread Shalin Shekhar Mangar
facing? -- Regards, Shalin Shekhar Mangar.

Re: I think this is a bug

2009-08-14 Thread Shalin Shekhar Mangar
or register for JIRA, but I just noticed that the Javadocs for SolrInputDocument.addField(String name, Object value, float boost) is incredibly wrong - it looks like it was copied from a deleteAll method. Thanks Paul and Chris. This is fixed in trunk. -- Regards, Shalin Shekhar Mangar.

Re: DIH problem passing HTTP parameters into data-config

2009-08-13 Thread Shalin Shekhar Mangar
in variables were not resolved. The fix is in 1.4 trunk https://issues.apache.org/jira/browse/SOLR-823 -- Regards, Shalin Shekhar Mangar.

Re: Indexing date into multiple fields

2009-08-12 Thread Shalin Shekhar Mangar
be used to do parse out the year etc. -- Regards, Shalin Shekhar Mangar.

Re: Newbie problem ordering results

2009-08-12 Thread Shalin Shekhar Mangar
chain. -- Regards, Shalin Shekhar Mangar.

Re: How to boost some documents at query-time ?

2009-08-12 Thread Shalin Shekhar Mangar
-- Regards, Shalin Shekhar Mangar.

Re: Test SPEED

2009-08-12 Thread Shalin Shekhar Mangar
. -- Regards, Shalin Shekhar Mangar.

Re: Multiple Unique Ids

2009-08-11 Thread Shalin Shekhar Mangar
in solrconfig.xml. But during indexing you can create the uniqueKey value as id-authorid. -- Regards, Shalin Shekhar Mangar.

Re: build.xml errors

2009-08-11 Thread Shalin Shekhar Mangar
-build.xml etc) are full of errros (couple of hundreds), such as: The IDEs complain because of the many ant macros used by Solr. Don't worry about it. You should be able to execute any target from build.xml without any errors. -- Regards, Shalin Shekhar Mangar.

Re: Searching for reservations/availability with Solr

2009-08-11 Thread Shalin Shekhar Mangar
. -- Regards, Shalin Shekhar Mangar.

Re: Embedded Solr Clustering

2009-08-10 Thread Shalin Shekhar Mangar
application if you use embedded solr. -- Regards, Shalin Shekhar Mangar.

Re: Question regarding merging Solr indexes

2009-08-09 Thread Shalin Shekhar Mangar
missing something else? What is the adminPath in your solr.xml? It may be different than /solr/admin. -- Regards, Shalin Shekhar Mangar.

Re: Documentation for Master-Slave Replication missing for Solr1.3. No mirror site for Solr 1.4 distribution.

2009-08-07 Thread Shalin Shekhar Mangar
http://wiki.apache.org/solr/SolrCollectionDistributionStatusStats http://wiki.apache.org/solr/SolrCollectionDistributionOperationsOutline -- Regards, Shalin Shekhar Mangar.

Re: mergeFactor / indexing speed

2009-08-07 Thread Shalin Shekhar Mangar
instead of 1.5h! I'm a little late to the party but you may also want to look at CachedSqlEntityProcessor. -- Regards, Shalin Shekhar Mangar.

Re: solr v1.4 in production?

2009-08-07 Thread Shalin Shekhar Mangar
you can provide would be most welcome. We're using Solr 1.4 built from r793546 in production along with the new java based replication. -- Regards, Shalin Shekhar Mangar.

Re: Question regarding merging Solr indexes

2009-08-07 Thread Shalin Shekhar Mangar
://wiki.apache.org/solr/MergingSolrIndexes#head-0befd0949a54b6399ff926062279afec62deb9ce -- Regards, Shalin Shekhar Mangar.

Re: 99.9% uptime requirement

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

Re: Index rebuilding.

2009-08-05 Thread Shalin Shekhar Mangar
is in progress? Yes. -- Regards, Shalin Shekhar Mangar.

Re: Rotating the primary shard in /solr/select

2009-08-04 Thread Shalin Shekhar Mangar
(A) gives a performance boost? We issue distributed search queries through a load balancer. So in effect, the merging server (or aggregator) keeps changing. I don't know if that leads to a performance boost or not but I guess spreading the load is a good idea. -- Regards, Shalin Shekhar Mangar.

Re: Rotating the primary shard in /solr/select

2009-08-04 Thread Shalin Shekhar Mangar
want to send the request. It has nothing to do with distributed search by itself. -- Regards, Shalin Shekhar Mangar.

Re: Rotating the primary shard in /solr/select

2009-08-04 Thread Shalin Shekhar Mangar
of the shards parameter, queries other servers, merges the responses and sends it back to the client. -- Regards, Shalin Shekhar Mangar.

Re: Error with UpdateRequestProcessorFactory

2009-08-04 Thread Shalin Shekhar Mangar
the released Solr 1.3 or some intermediate nightly build? The 1.3 release has SolrCore.getUpdateProcessorChain(String) method. -- Regards, Shalin Shekhar Mangar.

Re: Using DIH for parallel indexing

2009-07-31 Thread Shalin Shekhar Mangar
${dataimporter.request.X} or ${dih.request.X} to access parameter X. 2. Can I use the same data-import-handler in someway so that indexing can be carried out in parallel? No, not currently. -- Regards, Shalin Shekhar Mangar.

Re: Recreating SOLR index after a schema change - without having to re-post the data

2009-07-31 Thread Shalin Shekhar Mangar
/browse/SOLR-828 https://issues.apache.org/jira/browse/SOLR-139 -- Regards, Shalin Shekhar Mangar.

Re: search suggest

2009-07-30 Thread Shalin Shekhar Mangar
On Thu, Jul 30, 2009 at 4:52 AM, Jason Rutherglen jason.rutherg...@gmail.com wrote: I created an issue and have added some notes https://issues.apache.org/jira/browse/SOLR-1316 Also see https://issues.apache.org/jira/browse/SOLR-706 -- Regards, Shalin Shekhar Mangar.

Re: Posting data in JSON

2009-07-30 Thread Shalin Shekhar Mangar
the indexing and lower the network load. If you are using Java,Solrj on 1.4 (trunk), you can use the binary format which is extremely compact and efficient. Note that with Solr/Solrj 1.3, binary became the default response format for Solrj clients. -- Regards, Shalin Shekhar Mangar.

Re: Minimum facet length?

2009-07-30 Thread Shalin Shekhar Mangar
faceting is done on untokenized fields (such as string type). -- Regards, Shalin Shekhar Mangar.

Re: Minimum facet length?

2009-07-30 Thread Shalin Shekhar Mangar
On Thu, Jul 30, 2009 at 10:35 PM, Erik Hatcher e...@ehatchersolutions.comwrote: On Jul 30, 2009, at 1:00 PM, Shalin Shekhar Mangar wrote: On Thu, Jul 30, 2009 at 9:53 PM, dar...@ontrenet.com wrote: Hi, I am exploring the faceted search results of Solr. My query is like this. http

Re: Problem with retrieving field from database using DIH

2009-07-30 Thread Shalin Shekhar Mangar
=onverbose=true parameter to the import. You should probably limit the number of documents to be indexed by adding rows=X to the full-import command otherwise the response would be huge. -- Regards, Shalin Shekhar Mangar.

Re: Is there a multi-shard optimize message?

2009-07-29 Thread Shalin Shekhar Mangar
... shards=shard-1,shard2 No, you'll need to send optimize to each host separately. -- Regards, Shalin Shekhar Mangar.

Re: solr/home in web.xml relative to web server home

2009-07-29 Thread Shalin Shekhar Mangar
for that. You can package the EntityProcessor into a separate jar and add it to solr_home/lib directory. -- Regards, Shalin Shekhar Mangar.

Re: Facet sorting by boost functions

2009-07-26 Thread Shalin Shekhar Mangar
of the best products in each of the highest-boosted category). I don't think there is a way to do that in one query right now. However, this sounds like Field Collapsing: https://issues.apache.org/jira/browse/SOLR-236 -- Regards, Shalin Shekhar Mangar.

Re: Core not reloading in Solr 1.3

2009-07-26 Thread Shalin Shekhar Mangar
which were indexed with the previous version of the synonym file will not have the new tokens and hence will not match. -- Regards, Shalin Shekhar Mangar.

Re: Exception thrown when searching field defined with PhoneticFilterFactory filter...

2009-07-24 Thread Shalin Shekhar Mangar
? Which field are you searching the integer value on? -- Regards, Shalin Shekhar Mangar.

Re: Index per user - thousands of indices in one Solr instance

2009-07-24 Thread Shalin Shekhar Mangar
The patch is up on SOLR-1293. There's a wiki page at http://wiki.apache.org/solr/LotsOfCores with details on the changes and configuration. On Thu, Jul 23, 2009 at 4:51 PM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: On Thu, Jul 23, 2009 at 4:30 PM, Łukasz Osipiuk luk

Re: Index per user - thousands of indices in one Solr instance

2009-07-23 Thread Shalin Shekhar Mangar
up a patch soon. Perhaps we can collaborate? -- Regards, Shalin Shekhar Mangar.

Re: Question re SOLR-920 Cache and reuse schema

2009-07-23 Thread Shalin Shekhar Mangar
be able to add values to dynamic fields for each core independently. -- Regards, Shalin Shekhar Mangar.

Re: Index per user - thousands of indices in one Solr instance

2009-07-23 Thread Shalin Shekhar Mangar
features, configuration options and performance benchmark results. -- Regards, Shalin Shekhar Mangar.

Re: Setting termInfosIndexDivisor and Interval?

2009-07-20 Thread Shalin Shekhar Mangar
currently but we should. Lets open an issue. -- Regards, Shalin Shekhar Mangar.

Re: Help needed with Solr maxBooleanClauses

2009-07-20 Thread Shalin Shekhar Mangar
request may work. -- Regards, Shalin Shekhar Mangar.

Re: Help needed with Solr maxBooleanClauses

2009-07-20 Thread Shalin Shekhar Mangar
the complete stack trace of the error. -- Regards, Shalin Shekhar Mangar.

Re: can i use solr to do this

2009-07-17 Thread Shalin Shekhar Mangar
days (59) Is this possible? i.e. range query as facet? Yes, you can use facet.query and pass a range facet.query=created:[NOW/DAY - NOW/DAY-1DAY]facet.query=created:[NOW/DAY - NOW/DAY-7DAYS] and so on -- Regards, Shalin Shekhar Mangar.

Re: Highlight arbitrary text

2009-07-16 Thread Shalin Shekhar Mangar
. Is this possible? I don't think it is possible currently but I see how it can be useful. Can you please open a jira issue so we don't forget about it? -- Regards, Shalin Shekhar Mangar.

Re: How to filter old revisions

2009-07-15 Thread Shalin Shekhar Mangar
with doc's with only highest revision number? What is revision? Is it a field in your Solr document? There's no way to find max but you can always sort descending by the revision field and take the first. -- Regards, Shalin Shekhar Mangar.

Re: Segments_2 and segments.gen under Index folder and spellchecker1, spellchecker2, spellcheckerFile folder

2009-07-15 Thread Shalin Shekhar Mangar
the segments_N file (eg on filesystems, like NFS, where the directory listing may come from a stale cache). Older Lucene versions (before 2.1) created only the file segments. Thanks for clarifying that Mike! -- Regards, Shalin Shekhar Mangar.

Re: Implementing Solr for the first time

2009-07-14 Thread Shalin Shekhar Mangar
? -- Regards, Shalin Shekhar Mangar.

Re: Sharded Index Creation Magic?

2009-07-14 Thread Shalin Shekhar Mangar
schema.xml? -- Regards, Shalin Shekhar Mangar.

Re: Availability during merge

2009-07-14 Thread Shalin Shekhar Mangar
to core0, they'll wait for the merge to finish. -- Regards, Shalin Shekhar Mangar.

Re: Spell checking: Is there a way to exclude words known to be wrong?

2009-07-14 Thread Shalin Shekhar Mangar
On Tue, Jul 14, 2009 at 6:37 PM, Erik Hatcher e...@ehatchersolutions.comwrote: Use the stopwords feature with a custom mispeled_words.txt and a StopFilterFactory on the spell check field ;) Very cool! :) -- Regards, Shalin Shekhar Mangar.

Re: Sharded Index Creation Magic?

2009-07-14 Thread Shalin Shekhar Mangar
to have a value for the uniqueKey field. These values are used to merge responses from the shards. -- Regards, Shalin Shekhar Mangar.

Re: support for Payload Feature of lucene in solr

2009-07-14 Thread Shalin Shekhar Mangar
On 7/14/09 7:39 AM, Toby Cole toby.c...@semantico.com wrote: We're looking into using payloads to improve relevance for stemmed terms, using the payload to store the unstemmed term, boosting the term if there's an exact match with the payloads. -- Regards, Shalin Shekhar

Re: Segments_2 and segments.gen under Index folder and spellchecker1, spellchecker2, spellcheckerFile folder

2009-07-14 Thread Shalin Shekhar Mangar
to SpellCheckComponent from your solrconfig.xml and delete these directories. -- Regards, Shalin Shekhar Mangar.

Re: Boosting certain documents dynamically at query-time

2009-07-13 Thread Shalin Shekhar Mangar
slow if you add so many clauses. -- Regards, Shalin Shekhar Mangar.

Re: Faceting

2009-07-13 Thread Shalin Shekhar Mangar
Shekhar Mangar.

Re: Question About Solr Cores

2009-07-11 Thread Shalin Shekhar Mangar
-920. The pending issues are: https://issues.apache.org/jira/browse/SOLR-919 https://issues.apache.org/jira/browse/SOLR-1028 https://issues.apache.org/jira/browse/SOLR-880 -- Regards, Shalin Shekhar Mangar.

Re: Aggregating/Grouping Document Search Results on a Field

2009-07-11 Thread Shalin Shekhar Mangar
untokenized fields. Solr 1.4 has huge improvements in faceting performance so you can try that and see if it helps. See Yonik's blog post about this - http://yonik.wordpress.com/2008/11/25/solr-faceted-search-performance-improvements/ -- Regards, Shalin Shekhar Mangar.

Re: solr jmx connection

2009-07-11 Thread Shalin Shekhar Mangar
(u); mbeanServer = connector.getMBeanServerConnection(); Solr exposes many MBeans, there's one named searcher which always refers to the live SolrIndexSearcher. You can connect with jconsole once to see all the mbeans. Hope that helps. -- Regards, Shalin Shekhar Mangar.

Re: Using curl comparing with using WebService::Solr

2009-07-10 Thread Shalin Shekhar Mangar
. Any inputs? Commit only when you must show changes to searchers. It is best to commit once you are done with all documents. Also, batching documents in one curl call will also help a lot (save on http overhead). -- Regards, Shalin Shekhar Mangar.

Re: Using curl comparing with using WebService::Solr

2009-07-10 Thread Shalin Shekhar Mangar
that. Basically, your script will read a number of files, combine them into one and send them with one curl call. However, I just noticed that you are posting to localhost only, so may not be that expensive to have one curl call per document. -- Regards, Shalin Shekhar Mangar.

Re: Modifying a stored field after analyzing it?

2009-07-10 Thread Shalin Shekhar Mangar
(indexed, not stored) - one two three four [METAINFO] oneprime twoprime threeprime fourprime f2 (not indexed, stored) - one two three four -- Regards, Shalin Shekhar Mangar.

Re: Tagging and searching on tagged indexes.

2009-07-07 Thread Shalin Shekhar Mangar
affect. -- Regards, Shalin Shekhar Mangar.

Re: Can´t use wildcard * on alphanumeric values?

2009-07-07 Thread Shalin Shekhar Mangar
preserveOriginal=1 to the WordDelimiterFilterFactory definition inside the 'text' field type. -- Regards, Shalin Shekhar Mangar.

Re: Can´t use wildcard * on alphanumeric values?

2009-07-07 Thread Shalin Shekhar Mangar
://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters -- Regards, Shalin Shekhar Mangar.

Re: reindexed data on master not replicated to slave

2009-07-07 Thread Shalin Shekhar Mangar
in the new index directory? You can get the new index directory's name from index.properties. -- Regards, Shalin Shekhar Mangar.

Re: Index partitioning with solr multiple core feature

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

Re: Index partitioning with solr multiple core feature

2009-07-06 Thread Shalin Shekhar Mangar
search over all the shards in one go. -- Regards, Shalin Shekhar Mangar.

Re: Question on Facet Count

2009-07-02 Thread Shalin Shekhar Mangar
in multiple fields for this to work. One big field containing everything is ok for full text search but you can't build a faceted search on that. -- Regards, Shalin Shekhar Mangar.

Re: DIH: Limited xpath syntax unable to parse all xml elements

2009-07-02 Thread Shalin Shekhar Mangar
with multiple matching sub nodes, so perhaps DIH Xpath does not properly support that and just selects the last matching node? It selects all matching nodes. But if the field is not multi-valued, it will store only the last value. I guess this is what is happening here. -- Regards, Shalin Shekhar

Re: DIH: Limited xpath syntax unable to parse all xml elements

2009-07-02 Thread Shalin Shekhar Mangar
On Thu, Jul 2, 2009 at 11:38 PM, Mark Miller markrmil...@gmail.com wrote: Shalin Shekhar Mangar wrote: It selects all matching nodes. But if the field is not multi-valued, it will store only the last value. I guess this is what is happening here. So do you think it should match them all

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   >