Shard Query in Solrsharp

2010-09-30 Thread Maddy.Jsh
Hi, I have been using solrsharp to integrate solr in my project. Everything was going fine until I tried to incorporate shard query. I tested the shard query using the browser and everything went fine. I tried to do the same in solrsharp by adding the following line

Re: Solrsharp

2010-03-01 Thread Janne Majaranta
(range queries didn't work very good...) and yes, i thought about changing the parameterjoin. I'm already using solrsharp for indexing without problems but i guess for searches, I'm gonna give a try to solrnet mostly because the lack of support/feedback with solrsharp... Does anyone around

Re: Solrsharp

2010-02-27 Thread Sachin
#. S -Original Message- From: Frederico Azeiteiro frederico.azeite...@cision.com To: solr-user@lucene.apache.org Sent: Fri, Feb 26, 2010 9:54 pm Subject: Solrsharp Hi, I don't know if this list includes this kind of help, but I'm using Solrsharp with C# to operate SOLR. Please

RE: Solrsharp

2010-02-27 Thread Frederico Azeiteiro
Hi Saschin, Yes i had to make some patches too (range queries didn't work very good...) and yes, i thought about changing the parameterjoin. I'm already using solrsharp for indexing without problems but i guess for searches, I'm gonna give a try to solrnet mostly because the lack

Solrsharp

2010-02-26 Thread Frederico Azeiteiro
Hi, I don't know if this list includes this kind of help, but I'm using Solrsharp with C# to operate SOLR. Please advise if this is off-topic please. I'm having a little trouble to make a search with exclude terms using the query parameters. Does anyone uses Solrsharp around here? Do

How to get WildCard/prefix in SolrSharp

2009-11-11 Thread theashik
In Solrj, there is a method called setAllowLeadingWildcard(true). I need to call the same method in SolrSharp API as well. But I don't find the class SolrQueryParser.cs in SolrSharp API. Can any one suggest me how to call that method, if I can use any provided namespace

Re: How to get WildCard/prefix in SolrSharp

2009-11-11 Thread Mauricio Scheffer
method in SolrSharp API as well. But I don't find the class SolrQueryParser.cs in SolrSharp API. Can any one suggest me how to call that method, if I can use any provided namespace as org.apache.solr.SolrSharp.Search.SolrQueryParser in SolrSharp. Thank you Ashik Rajbhandari -- View

SolrSharp

2008-12-02 Thread Grant Ingersoll
Anyone know the status of SolrSharp? Is it actively maintained? Thanks, Grant

Re: SolrSharp

2008-12-02 Thread Otis Gospodnetic
Sent: Tuesday, December 2, 2008 4:02:33 PM Subject: SolrSharp Anyone know the status of SolrSharp? Is it actively maintained? Thanks, Grant

Re: SolrSharp gone?

2008-10-23 Thread Otis Gospodnetic
Aha, it's there now - the site was down yesterday. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Ryan McKinley [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Wednesday, October 22, 2008 5:29:45 PM Subject: Re: SolrSharp gone

SolrSharp gone?

2008-10-22 Thread Otis Gospodnetic
Hello, It looks like we might have lost SolrSharp: http://wiki.apache.org/solr/SolrSharp It looks like its home is http://www.codeplex.com/solrsharp , but the site is no longer available. Does anyone know its status? There is also http://code.google.com/p/deveel-solr/ , but this seems brand

Re: SolrSharp gone?

2008-10-22 Thread Ryan McKinley
On Oct 22, 2008, at 4:17 PM, Otis Gospodnetic wrote: Hello, It looks like we might have lost SolrSharp: http://wiki.apache.org/solr/SolrSharp It looks like its home is http://www.codeplex.com/solrsharp , but the site is no longer available. Does anyone know its status? looks like

RE: Getting SolrSharp to work, Part 2

2008-01-25 Thread Peter Thygesen
This patch covers the issues I wrote about in my previous mails How to get SolrSharp to work and How to get SolrSharp to work, part 2 By the way should I post on this thread, or on CodePlex. When the topic is SolrSharp? I don't mind adding a few more comments to the discussion I already started

Re: Getting SolrSharp to work, Part 2

2008-01-25 Thread Chris Hostetter
: Great, thanks Peter. And yes, I think it would be good to concentrate the : conversation over on codeplex. I know the Solr team has no problem with : solrsharp conversations here on the solr mailing list, but the conversation : is highly focused on the server. Putting the solrsharp

RE: Getting SolrSharp to work, Part 2

2008-01-25 Thread Peter Thygesen
Ups. Forgot to tell that the patch was uploaded on CodePlex http://www.codeplex.com/solrsharp/SourceControl/PatchList.aspx \peter -Original Message- From: Peter Thygesen Sent: 25. januar 2008 13:17 To: solr-user@lucene.apache.org Subject: RE: Getting SolrSharp to work, Part 2

Re: Getting SolrSharp to work, Part 2

2008-01-25 Thread Jeff Rodenburg
Great, thanks Peter. And yes, I think it would be good to concentrate the conversation over on codeplex. I know the Solr team has no problem with solrsharp conversations here on the solr mailing list, but the conversation is highly focused on the server. Putting the solrsharp conversation

Getting SolrSharp to work, Part 2

2008-01-23 Thread Peter Thygesen
I wrote a small client in .Net which query Solr and dumps the result on screen.. fantastic low-tech.. ;) However I ran into new SolrSharp problems. My schema allows a particular field to be multiValued, but if it only has one value, it will cause SolrSharp fail in line 88 of Class

SolrSharp and UTF-8, danish letters are messed up

2008-01-17 Thread Peter Thygesen
Norwegian and danish letters like ÆØÅ are messed up when indexing using SolrSharp??? I've checked the C# code, and to me it looks right. If I instead write my documents to disk (in utf-8), uploads the file to my solr server and runs post.jar from the tutorial, everything works out correctly

Re: WebException (ServerProtocolViolation) with SolrSharp

2007-10-11 Thread Filipe Correia
Jeff, Thanks! Your suggestion worked, instead of invoking ToString() on float values I've used ToString's other signature, which takes a an IFormatProvider: CultureInfo MyCulture = CultureInfo.InvariantCulture; this.Add(new IndexFieldValue(weight, weight.ToString(MyCulture.NumberFormat)));

Re: WebException (ServerProtocolViolation) with SolrSharp

2007-10-11 Thread Jeff Rodenburg
Good to know, I think this needs to be a configurable value in the library (overridable, at a minimum.) What's outstanding for me on this is understanding the Solr side of the equation, and whether culture variance comes into play. What makes this even more interesting/confusing is how culture

Re: WebException (ServerProtocolViolation) with SolrSharp

2007-10-10 Thread Jeff Rodenburg
Hi Felipe - The issue you're encountering is a problem with the data format being passed to the solr server. If you follow the stack trace that you posted, you'll notice that the solr field is looking for a value that's a float, but the passed value is 1,234. I'm guessing this is caused by one

Re: Solrsharp culture problems

2007-09-24 Thread Jeff Rodenburg
Yes, that would be the right solution. I'm not sure if, in order to use french culture settings on xp, you would require corresponding changes in culture settings for the solr instance. Hope this helps. -- j On 9/24/07, JP Genty - LibertySurf [EMAIL PROTECTED] wrote: I use solrsharp

Solrsharp now supports debugQuery

2007-08-31 Thread Jeff Rodenburg
Solrsharp now supports query debugging. This is enabled through the debugQuery and explainOther parameters. A DebugResults object is referenced by a SearchResults instance and provides all the debugging information that is available through these parameters, such as: - QueryString

Major update to Solrsharp

2007-08-22 Thread Jeff Rodenburg
A big update was just posted to the Solrsharp project. This update now provides for first-class support for highlighting in the library. The implementation is really robust and provides the following features: - Structured highlight parameter assignment based on the SolrField object

RE: Solrsharp highlighting

2007-08-15 Thread Charlie Jackson
Rodenburg [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 14, 2007 1:08 AM To: solr-user@lucene.apache.org Subject: Re: Solrsharp highlighting Pull down the latest example code from http://solrstuff.org/svn/solrsharpwhich includes adding facets to search results. It's really short and simple

Re: Solrsharp highlighting

2007-08-15 Thread Jeff Rodenburg
that it's incorporated that way for other reasons, but it makes patching the highlighted portions together with the doc results in Solrsharp an out-of-band experience. Nonetheless, the approach I'm trying is one where the highlighted nodes are associated with the SearchResults object, and will have

Re: Solrsharp highlighting

2007-08-14 Thread Jeff Rodenburg
Jackson 312-873-6537 [EMAIL PROTECTED] -Original Message- From: Charlie Jackson [mailto:[EMAIL PROTECTED] Sent: Friday, August 10, 2007 3:51 PM To: solr-user@lucene.apache.org Subject: Solrsharp highlighting Trying to use Solrsharp (which is a great tool, BTW) to get some results

Re: Solrsharp highlighting

2007-08-13 Thread Jeff Rodenburg
/jira/browse/SOLR-338) On 8/10/07, Charlie Jackson [EMAIL PROTECTED] wrote: Trying to use Solrsharp (which is a great tool, BTW) to get some results in a C# application. I see the HighlightFields method of the QueryBuilder object and I've set it to my highlight field, but how do I get

Solrsharp highlighting

2007-08-10 Thread Charlie Jackson
Trying to use Solrsharp (which is a great tool, BTW) to get some results in a C# application. I see the HighlightFields method of the QueryBuilder object and I've set it to my highlight field, but how do I get at the results? I don't see anything in the SearchResults code that does anything

RE: Solrsharp highlighting

2007-08-10 Thread Charlie Jackson
To: solr-user@lucene.apache.org Subject: Solrsharp highlighting Trying to use Solrsharp (which is a great tool, BTW) to get some results in a C# application. I see the HighlightFields method of the QueryBuilder object and I've set it to my highlight field, but how do I get at the results? I don't see

Solrsharp: direction

2007-07-08 Thread Jeff Rodenburg
I've been asked a few questions of late that all have a familiar theme: what's going on with solrsharp development? Well, I've been working on the next iteration of the Solrsharp client library, attempting to bring it more in line with the capabilities of Solr, at least as of the 1.2 release

SolrSharp boost - int vs. float

2007-07-05 Thread Otis Gospodnetic
Hi, Here is a quick one for Jeff R. about his SolrSharp client. Looking at http://solrstuff.org/svn/solrsharp/src/Query/Parameters/QueryParameter.cs , I see boost defined as an int(eger): private int _boost = 1; Lucene's boosts are floats (see http://lucene.apache.org/java/2_2_0/api

Re: SolrSharp boost - int vs. float

2007-07-05 Thread Jeff Rodenburg
is a quick one for Jeff R. about his SolrSharp client. Looking at http://solrstuff.org/svn/solrsharp/src/Query/Parameters/QueryParameter.cs, I see boost defined as an int(eger): private int _boost = 1; Lucene's boosts are floats (see http://lucene.apache.org/java/2_2_0/api/org/apache/lucene

solrsharp thoughts

2007-07-05 Thread Ryan McKinley
I just took a quick look at solrsharp. I don't really have to use it yet, so this is not an in depth review. I like the templated SearchResults -- that seems useful. I don't quite follow the need to parse the SolrSchema on the client side? Is that to know what fields are available? Could

Re: solrsharp thoughts

2007-07-05 Thread Jeff Rodenburg
Thanks Ryan. Comments below. On 7/5/07, Ryan McKinley [EMAIL PROTECTED] wrote: I just took a quick look at solrsharp. I don't really have to use it yet, so this is not an in depth review. I like the templated SearchResults -- that seems useful. That has proven to be extremely useful

Re: Recent updates to Solrsharp

2007-06-21 Thread Jeff Rodenburg
great, thanks Yonik. On 6/20/07, Yonik Seeley [EMAIL PROTECTED] wrote: On 6/21/07, Jeff Rodenburg [EMAIL PROTECTED] wrote: As an aside, it would be nice to record these issues more granularly in JIRA. Could we get a component created for our client library, similar to java/php/ruby? Done.

Re: SolrSharp example

2007-06-20 Thread Jeff Rodenburg
Hi Michael - Moving this conversations to the general solr mailing list... 1. SolrSharp example solution works with schema.xml from apache-solr-1.1.0-incubating.If I'm using schema.xml from apache-solr-1.2.0 example program doesn't update index... I didn't realize the solr 1.2 release

Re: SolrSharp example

2007-06-20 Thread Jeff Rodenburg
On 6/20/07, Yonik Seeley [EMAIL PROTECTED] wrote: On 6/20/07, Michael Plax [EMAIL PROTECTED] wrote: This is a log that I got after runnning SolrSharp example. I think example program posts not properly formatted xml. I'm running Solr on Windows XP, Java 1.5. Are those settings could

Re: SolrSharp example

2007-06-20 Thread Michael Plax
Hello, Yonik and Jeff thank you for your help. You are right this was content-type issue. in order to run example following things need to be done: 1.Code (SolrSharp) should be changed from: src\Configuration\SolrSearcher.cs(217):oRequest.ContentType = application/x-www-form

Re: SolrSharp example

2007-06-20 Thread Jeff Rodenburg
need to be done: 1.Code (SolrSharp) should be changed from: src\Configuration\SolrSearcher.cs(217):oRequest.ContentType = application/x-www-form-urlencoded; to: src\Configuration\SolrSearcher.cs(217):oRequest.ContentType = text/xml; 2. In order take care of the solr 1.2 schema

Recent updates to Solrsharp

2007-06-20 Thread Jeff Rodenburg
Thanks to Yonik, Michael, Ryan, (and others) for some recent help on various issues discovered with Solrsharp. We were able to discover a few issues with the library relative to the Solr 1.2 release. Those issues have been remedied and have been pushed into source control. The Solrsharp source

Re: Recent updates to Solrsharp

2007-06-20 Thread Yonik Seeley
On 6/21/07, Jeff Rodenburg [EMAIL PROTECTED] wrote: As an aside, it would be nice to record these issues more granularly in JIRA. Could we get a component created for our client library, similar to java/php/ruby? Done. -Yonik

Update to SolrSharp

2007-06-13 Thread Jeff Rodenburg
Solrsharp has been validated against the Solr 1.2 release. Validation was made using the example application that's available with the Solrsharp code against a default example index with the Solr 1.2 released bits. - The source code for Solrsharp is now accessible via subversion. Many thanks

Re: Update to SolrSharp

2007-06-13 Thread Michael Plax
Hello Jeff, Thank you for posting Solrsharp. I just check it out and it looks like projects (src\SolrSharp.csproj , example\Example.csproj) are missing from VS solution. Thank you, Michael - Original Message - From: Jeff Rodenburg [EMAIL PROTECTED] To: solr-user@lucene.apache.org

Re: Solrsharp feedback

2007-04-26 Thread Otis Gospodnetic
://www.simpy.com/ - Tag - Search - Share - Original Message From: Jeff Rodenburg [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Tuesday, April 24, 2007 11:42:11 PM Subject: Solrsharp feedback I sent a few messages to the list about Solrsharp, the C# library for working with Solr

Solrsharp feedback

2007-04-24 Thread Jeff Rodenburg
I sent a few messages to the list about Solrsharp, the C# library for working with Solr, a couple of weeks ago. This was the first iteration of the library and something I expected to see modified as others got a chance to review it. I've not heard any feedback since then, though. For those

Re: SolrSharp - a C# client API for Solr

2007-04-10 Thread Jeff Rodenburg
looking forward to using Solr and Solr# in the coming months. Your client is going to be a great help. regards, -jim On 4/9/07, Jeff Rodenburg [EMAIL PROTECTED] wrote: All - I'm proud to announce a release to a new client API for Solr -- SolrSharp. SolrSharp is a C# library that abstracts

SolrSharp - a C# client API for Solr

2007-04-09 Thread Jeff Rodenburg
All - I'm proud to announce a release to a new client API for Solr -- SolrSharp. SolrSharp is a C# library that abstracts the interoperation of a solr search server. This is an initial release that covers the basics of working with Solr. The library is very fleshed out, but the example has