solrnet « Field « Java Lucene Q&A

Home
Java Lucene Q&A
1.Database
2.Development
3.document
4.Field
5.index
6.lucene
7.lucene.net
8.nutch
9.query
10.solr
11.Tools
Java Lucene Q&A » Field » solrnet 

1. How to access multi-valued dynamic fields with SolrNet?    stackoverflow.com

How would you implement multi-valued dynamic fields with SolrNet? I know with dynamic fields I can set them up like:

[SolrField("price_")]
public IDictionary<string, decimal> Price { get; set; }
And multivalued fields like:
[SolrField("fieldname")]
public ICollection<string> MyField ...

2. Solr/solrnet MLT (more like this) results narrowed down by facet field    stackoverflow.com

I have a single Solr instance for indexing multiple sites content. While indexing I am populating Website field to be able to perform faceted search on that field for every particular website...and ...

3. Turn off case sensitivity in SolrNet fields    stackoverflow.com

I am facing a problem with the case sensitivity of SolrNet Filters. e.g. new SolrQueryByField("City", "Chicago") returns the results but SolrQueryByField("City", "chicago") does not return anything because "chicago" is in lower ...

4. Solr: How to search multiple fields    stackoverflow.com

I am using solrnet. I have a title and Description fields. I need to search both fields simultaneously. How do I do this?

5. Is it possible to do Field Collapsing/Grouping with Solrnet 0.3.1 and Sorl 3.3    stackoverflow.com

As mentioned in the question I am trying to utilize Solr's result grouping feature to (surprise) group my search results. From what I understand Solrnet 0.3.1 supports field collapsing but is ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.