Re: twitter questions

2012-08-20 Thread Nicholas Paldino [.NET/C# MVP]
I've also found the question on SO, I'll give it a shot later today. On Aug 20, 2012, at 10:18 AM, Michael Herndon mhern...@wickedsoftware.net wrote: I went to update the twitter feed and saw these questions in case anyone wants to answer these: @Nick_Craver @LuceneDotNet - is anyone

RE: Lucene.Net 3.0.3 and medium trust

2012-08-18 Thread Nicholas Paldino [.NET/C# MVP]
Chris, All you have to do is create a new AppDomain properly and marshal the call into that app domain. You'll need a wrapper that derives from MarshalByRefObject so the call is marshaled; it's in the marshaled call that you do your test work and then marshal the results for

Re: [Lucene.Net] 2.9.4

2011-09-22 Thread Nicholas Paldino [.NET/C MVP#]
Prescott, You really don't need to do that; reads and writes of reference fields are guaranteed to be atomic as per section 5.5 of the C# Language Specufication (Atomicity of variable references) If you were doing other operations beyond the read and write that you wanted to be atomic, then

[Lucene.Net] OT: Wyatt's expression was - RE: [Lucene.Net] VOTE: .NET 2.0 Framework Support After Apache Lucene.Net 2.9.4

2011-05-10 Thread Nicholas Paldino [.NET/C# MVP]
I've cast my vote already, but +1 to Wyatt's expression -Original Message- From: Wyatt Barnett [mailto:wyatt.barn...@gmail.com] Sent: Tuesday, May 10, 2011 12:46 PM To: lucene-net-dev@lucene.apache.org Subject: Re: [Lucene.Net] VOTE: .NET 2.0 Framework Support After Apache Lucene.Net

RE: [Lucene.Net] VOTE: .NET 2.0 Framework Support After Apache Lucene.Net 2.9.4

2011-05-09 Thread Nicholas Paldino [.NET/C# MVP]
+1 -Original Message- From: Troy Howard [mailto:thowar...@gmail.com] Sent: Monday, May 09, 2011 4:05 PM To: lucene-net-dev@lucene.apache.org; lucene-net-u...@lucene.apache.org Subject: [Lucene.Net] VOTE: .NET 2.0 Framework Support After Apache Lucene.Net 2.9.4 All, Please cast your

RE: [Lucene.Net] Medium trust security issue

2011-05-01 Thread Nicholas Paldino [.NET/C# MVP]
-for-line port code, so best to keep it in SupportClass. - Nicholas Paldino [.NET/C# MVP] -Original Message- From: Richard Wilde [mailto:rich...@wildesoft.net] Sent: Sunday, May 01, 2011 6:01 AM To: lucene-net-...@incubator.apache.org Subject: [Lucene.Net] Medium trust security

RE: Stefan's Newbie Questions (was Re: Proposal Status, Initial Committors List, Contributors List)

2011-01-26 Thread Nicholas Paldino [.NET/C# MVP]
As a consumer (and I think that most consumers would agree), I'd have to disagree STRONGLY on trading off performance for ease of conversion. Lucene and Lucene.NET is predicated on performance, compromising that, IMO, runs contrary to the core principals of Lucene. - Nick -Original

RE: Question

2010-01-07 Thread Nicholas Paldino [.NET/C# MVP]
Erik, It's the fact that the API is exactly the same (as well as the lines of code, practically) which causes many of the issues in Lucene.NET (not only in use but in implementation), as while Java and C# are very similar, that doesn't guarantee the same results. But that's an