RE: ApacheCon North America 2015 Call For Papers

2015-01-05 Thread Shad Storhaug
Actually, yes there is one, although I am not sure this is the right forum for it. I have just completed a .NET port of version 3.2.0 of the BoboBrowse faceted search engine, which is implemented on top of Lucene.Net, and compatible with Lucene.Net 3.0.3. NuGet package (pre-release): https://ww

RE: Lucene.Net question

2015-12-14 Thread Shad Storhaug
Hello Kimon, Personally, I was unable to make the Simple Faceted Search function due to lack of examples. I ended up creating a .NET port of Bobo-Browse that is compatible with Lucene.Net 3.0.3. It is called BoboBrowse.Net. It is the simplest way I have found to create facets, there are dozen

RE: Lucene.Net question

2015-12-14 Thread Shad Storhaug
/lucenenet/blob/3.0.3/test/contrib/SimpleFacetedSearch/TestSimpleFacetedSearch.cs -Michael On Mon, Dec 14, 2015 at 3:00 AM, Shad Storhaug wrote: > Hello Kimon, > > Personally, I was unable to make the Simple Faceted Search function > due to lack of examples. > > I ended up creatin

RE: Next sync release Lucene.net

2016-01-26 Thread Shad Storhaug
finally released. GitHub: https://github.com/NightOwl888/BoboBrowse.Net NuGet: https://www.nuget.org/packages/BoboBrowse.Net Thanks, Shad Storhaug (aka NightOwl888) From: Bart Czernicki [mailto:bartosz.czerni...@microsoft.com] Sent: Tuesday, January 26, 2016 9:01 PM To: user

RE: Lucene.NET 4.8 is now in Beta - and we need your help!

2016-07-19 Thread Shad Storhaug
Itamar, Thanks for all of your hard work on this (not just to you, but to all whom are involved). After this announcement, I began work on porting BoboBrowse.NET 4.0.2 (the latest official release) faceted search engine to see if it will work with Lucene.Net 4.8.0. bobo-browse 4.0.2 was based

RE: Lucene.NET 4.8 is now in Beta - and we need your help!

2016-07-21 Thread Shad Storhaug
<https://twitter.com/synhershko> Freelance Developer & Consultant Lucene.NET committer and PMC member On Wed, Jul 20, 2016 at 4:46 AM, Shad Storhaug wrote: > Itamar, > > Thanks for all of your hard work on this (not just to you, but to all > whom are involved). > > Afte

Lucene.Net.Analysis.Common Work

2016-08-24 Thread Shad Storhaug
ultimately used to fix (or not fix) CharArraySet might end up changing the public API of CharArraySet. Other than that, I don't see any real issues that are holding up the release here. Thoughts? Shad Storhaug/NightOwl888

Suggest

2016-08-27 Thread Shad Storhaug
Is anyone working on porting over Suggest? I'd like to take a crack at it. Thanks, Shad Storhaug/NightOwl888

RE: Suggest

2016-08-27 Thread Shad Storhaug
r/src/Lucene.Net.Suggest :) -- Itamar Syn-Hershko http://code972.com | @synhershko <https://twitter.com/synhershko> Freelance Developer & Consultant Lucene.NET committer and PMC member On Sat, Aug 27, 2016 at 11:49 AM, Shad Storhaug wrote: > Is anyone working on porting over Suggest? I'

RE: Suggest

2016-09-02 Thread Shad Storhaug
ly, I think the second option is the best one, let me know if that is your feeling as well. Thanks, Shad Storhaug/NightOwl888 -Original Message- From: itamar.synhers...@gmail.com [mailto:itamar.synhers...@gmail.com] On Behalf Of Itamar Syn-Hershko Sent: Sunday, August 28, 2016 2

RE: TermDistinctValuesCollector

2016-11-08 Thread Shad Storhaug
e you some better insight on how the functionality works - you might want to try the Lucene (Java) user group if you are having trouble finding detailed documentation. The API is very similar in .NET. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Julian Ohrt [mailt

RE: Lucene.NET 4.8 demo

2016-11-09 Thread Shad Storhaug
eems much more impressive in a demo. 5. Perhaps there should be some way to reset the index? I entered another organization to test my updates to the code and it added that organization's results to the original index, which I wasn't expecting. Thanks, Shad Storhaug (NightOwl888) --

RE: Lucene.net

2017-01-01 Thread Shad Storhaug
still not yet stable. So if you integrate this into your project now, be prepared to do rework later when the API changes. If you want to avoid most of this rework, I suggest you wait until there is a pre-release available on NuGet. Thanks, Shad Storhaug (NightOwl888) -Original Message- Fr

RE: Do we have any release plan for Lucenenet?

2017-03-22 Thread Shad Storhaug
https://github.com/apache/lucene-solr/tree/releases/lucene-solr/4.8.0/lucene/analysis/smartcn) has not been ported and is not planned for the initial release. But if you have interest in it, we would welcome the contribution @ https://github.com/apache/lucenenet. Thanks, Shad Storhaug (NightO

RE: Lucene.Net - Missing Package

2017-05-04 Thread Shad Storhaug
Wyatt, I was under the impression that the "old" setup would no longer deploy packages to the feed. What happened here? Is it possible to remove the latest packages that correspond to the new API from MyGet? I don't have access to modify that MyGet feed. Thanks, Shad Storha

RE: Usage of MemoryIndex

2017-05-10 Thread Shad Storhaug
We have not yet generated API documentation (contributions welcome), but the packages have XML documentation that enables Intellisense support. You may find the Java API documentation for Suggest helpful: https://lucene.apache.org/core/4_8_0/suggest/index.html -Original Message- From:

RE: Lucene 4.8 IndexSearcher question

2017-05-15 Thread Shad Storhaug
e until 5.4. Of course, it is simple enough to make a reusable term: BytesRef bytes = new BytesRef("foo"); var term = new Term(BytesRef.DeepCopyOf(bytes)); Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Matt Diehl [mailto:mdi...@lexprompt.com.

RE: Lucene 4.8 IndexSearcher question

2017-05-15 Thread Shad Storhaug
erm(BytesRef.DeepCopyOf(bytes)); Oops, that should have been: BytesRef bytes = new BytesRef("foo"); var term = new Term("fieldName", BytesRef.DeepCopyOf(bytes)); -Original Message- From: Shad Storhaug [mailto:s...@shadstorhaug.com] Sent: Tuesday, May 16, 2017

RE: Lucene 4.8 IndexSearcher question

2017-05-16 Thread Shad Storhaug
lp me finalize it and/or decide to revert to the ExecuteSearch() method instead. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: itamar.synhers...@gmail.com [mailto:itamar.synhers...@gmail.com] On Behalf Of Itamar Syn-Hershko Sent: Tuesday, May 16, 2017 4:16 PM To:

RE: Lucene 4.8 IndexSearcher question

2017-05-16 Thread Shad Storhaug
(searcher); } The primary purpose of this new API will be to make SearcherManager easier to use in .NET. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Shad Storhaug Sent: Tuesday, May 16, 2017 4:53 PM To: user@lucenenet.apache.org Subject: RE: Lucene 4.8 IndexSearcher

[Release] Apache Lucene.Net 4.8.0-beta00004

2017-05-26 Thread Shad Storhaug
te API documentation (pull requests welcome). Thanks, Shad Storhaug (NightOwl888) Lucene.Net PMC Member

RE: Lucene 4.8 - Reusing Document during indexing

2017-06-11 Thread Shad Storhaug
l not be available after Lucene.Net 4.8, since the corresponding enumerations have been deprecated. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Matt Diehl [mailto:m...@gooddiehl.net.INVALID] Sent: Sunday, June 11, 2017 9:57 AM To: user@lucenenet.apache.org Subject: Lucen

RE: v4.8 BETA stability and migration implications

2017-06-11 Thread Shad Storhaug
rt. But there is also a change log that is Lucene.Net specific at: https://github.com/apache/lucenenet/blob/master/CHANGES.txt Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Alex Reeser [mailto:aree...@cyrious.com] Sent: Friday, June 9, 2017 11:56 PM To: user@lucenenet.apac

RE: Lucene 4.8 - Reusing Document during indexing

2017-06-11 Thread Shad Storhaug
st handle this case - suggestions welcome. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Matt Diehl [mailto:mdi...@lexprompt.com.INVALID] Sent: Sunday, June 11, 2017 4:58 PM To: user@lucenenet.apache.org Subject: Re: Lucene 4.8 - Reusing Document during indexing Thanks

RE: Parse query with special characters

2017-06-16 Thread Shad Storhaug
Sergey, Please provide the actual code, not a screenshot. Apparently, the mailing list server strips out images from the email, so it is impossible to help you without knowing what you are doing. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Sergey Zaharov

RE: Parse query with special characters

2017-06-23 Thread Shad Storhaug
n should be able to type whatever they want to represent a query, and this parser will do its best to interpret what to search for no matter how poorly composed the request may be." Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Sergey Zaharov [mailto:sergozaha...@gma

RE: bug fixed in lucene.Net 4.8 ?

2017-07-18 Thread Shad Storhaug
System.Security.Cryptography in Lucene.Net 4.8, so this issue no longer exists. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Hook, John [mailto:jlh...@regenstrief.org] Sent: Monday, July 17, 2017 8:53 PM To: user@lucenenet.apache.org; Roj Goldfarb Subject: RE: bug fixed in lucene.Net 4.8

RE: Search with special characters

2017-08-02 Thread Shad Storhaug
, Shad Storhaug (NightOwl888) -Original Message- From: Sergey Zaharov [mailto:sergozaha...@gmail.com] Sent: Thursday, August 3, 2017 5:53 AM To: user@lucenenet.apache.org Subject: Search with special characters Hi all, I have a problem with searching when my search string contains some of

RE: Stackoverflow exception

2017-08-07 Thread Shad Storhaug
Hi Oliver, In addition to providing the full stack trace that Itamar mentioned, could you confirm the problem still exists if you use the latest CI build here: https://www.myget.org/gallery/lucene-net-ci? Thanks, Shad Storhaug (NightOwl888) -Original Message- From: itamar.synhers

RE: Stackoverflow exception

2017-08-08 Thread Shad Storhaug
them to us. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Oliver Albrecht [mailto:o.albre...@oliver-albrecht.de] Sent: Tuesday, August 8, 2017 3:08 PM To: user@lucenenet.apache.org Subject: RE: Stackoverflow exception Hello Itamar, hello Shad, thanks for the fast response. I

RE: Stackoverflow exception

2017-08-08 Thread Shad Storhaug
Oliver, Sure, sending it to my email address would be fine, as long as it isn't too huge. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Oliver Albrecht [mailto:o.albre...@oliver-albrecht.de] Sent: Tuesday, August 8, 2017 6:29 PM To: user@lucenenet.apache.org Subjec

RE: test-framework base classes in 4.8

2017-08-14 Thread Shad Storhaug
this way so we can continue keeping the test code more Java-like in Lucene.Net, but make .NET-like method names for the package that we release. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Rauch, Matthias [mailto:matthias.ra...@rubicon.eu] Sent: Monday, August 14, 20

RE: [LUCENENET-594] Stackoverflow exception

2017-08-15 Thread Shad Storhaug
che.org/jira/projects/LUCENENET/issues/LUCENENET-594) so we can try to work out whether there is something wrong with the input data or the usage of AnalyzingSuggester is incorrect. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Oliver Albrecht [mailto:o.albre...@oliver-a

RE: [LUCENENET-594] Stackoverflow exception

2017-08-15 Thread Shad Storhaug
;Content" field so it can be read back? Even if that is not exactly the problem, I suspect this has more to do with how the data is written to the index than how it is being read. Some code or pseudo-code demonstrating how the index is being created would be helpful. Thanks, Shad Storhaug

RE: [LUCENENET-594] Stackoverflow exception

2017-08-15 Thread Shad Storhaug
cluding the text of whole letters and invoices in this field, since all of the tests show this to be the "suggested text" of what is typed. Using more than 7 or 8 words for a search term suggestion seems excessive. Thanks, Shad Storhaug (NightOwl888) -Original Message

RE: What is Lucene.net best practice architecture in ASP.NET (Web) application(s) ?

2017-09-19 Thread Shad Storhaug
with less code. The variable will go out of scope at the end of the using block, so it is not necessary to explicitly set it to null. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Haberl Norbert [mailto:norbert.hab...@ssi-schaefer.com] Sent: Tuesday, September 19, 2017 1:20

RE: missing FieldSelectors in lucene.net

2017-11-26 Thread Shad Storhaug
method, StoredFieldVisitor has a needsField method: if that method returns true then the field will be loaded and the appropriate type-specific method will be invoked with that fields's value. Hopefully, that clears it up. Thanks, Shad Storhaug (NightOwl888) -Original Message-

RE: Problems with Wildcard searches.

2017-12-21 Thread Shad Storhaug
to try doing the search in the invariant culture to see if you get better results. Might not be the issue, but it is a pretty quick theory to test. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Jens Melgaard [mailto:jens.melga...@systematic.com] Sent: Friday, December 22

RE: Problems with Wildcard searches.

2017-12-22 Thread Shad Storhaug
query... } // Your application code... Hope this helps. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Jens Melgaard [mailto:jens.melga...@systematic.com] Sent: Friday, December 22, 2017 4:07 PM To: user@lucenenet.apache.org Subject: RE: Problems with Wildcard searches. Hi

RE: KeywordAnalyzer in 4.8.0 beta

2018-01-10 Thread Shad Storhaug
etter to copy the contents of an existing analyzer and modify it as required. This was a design decision that the Lucene team made that was carried over into Lucene.Net. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: 小康 [mailto:xiaok...@cnblogs.com] Sent: Tuesday, Janu

RE: Lucene .Net Leading Zeros Issue

2018-01-10 Thread Shad Storhaug
This bug was fixed (along with several hundred others) in Lucene.Net-beta5 on NuGet: https://www.nuget.org/packages/Lucene.Net/ The solution is to upgrade to the latest version. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Joao.Faria [mailto:joao.fa...@portima.com

RE: AnalyzingInfixSuggester commit

2018-01-10 Thread Shad Storhaug
t: https://github.com/apache/lucenenet/blob/a3a12967b250e8e7e5f623f0ba7572ec64f479ac/src/Lucene.Net.Tests.Suggest/Suggest/Analyzing/AnalyzingInfixSuggesterTest.cs Thanks, Shad Storhaug (NightOwl888) -Original Message- From: David Ball [mailto:david.b...@webxsystems.com] Sent: Tuesday,

RE: State / Future of the Lucene.Net Project

2018-05-29 Thread Shad Storhaug
can be auto-published during each release). @Shannon - Could you please provide an update as to how far along this is? Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Arsen Shnurkov [mailto:arsen.shnur...@gmail.com] Sent: Tuesday, May 29, 2018 4:26 AM To: user@lucenen

RE: State / Future of the Lucene.Net Project

2018-05-29 Thread Shad Storhaug
, please let us know. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: Alberto León [mailto:leontis...@gmail.com] Sent: Tuesday, May 29, 2018 3:34 AM To: user@lucenenet.apache.org Cc: d...@lucenenet.apache.org Subject: Re: State / Future of the Lucene.Net Project Me too, but

RE: State / Future of the Lucene.Net Project

2018-05-29 Thread Shad Storhaug
ut how other similar pieces of code were ported. At this stage in the game, we mostly just need people to thoroughly test, report, and fix bugs. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: farhad khalafi [mailto:farhad.khal...@gmail.com] Sent: Tuesday,

RE: State / Future of the Lucene.Net Project

2018-06-14 Thread Shad Storhaug
be made around that project and its (large) dependent project. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: juliya james [mailto:juliy...@yahoo.co.in.INVALID] Sent: Monday, June 4, 2018 4:51 PM To: user@lucenenet.apache.org; d...@lucenenet.apache.org Subject: Re: State

RE: State / Future of the Lucene.Net Project

2018-06-20 Thread Shad Storhaug
Hello. Thanks for the heads up. For code optimizations, you will need to locate the areas that need fixing, patch them, and then submit a separate pull request on GitHub for each one. Please provide a small standalone piece of code (a console app works great) we can run before and after the patc

RE: State / Future of the Lucene.Net Project

2018-06-20 Thread Shad Storhaug
are incomplete to get you started. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: 小康 [mailto:xiaok...@cnblogs.com] Sent: Thursday, June 21, 2018 9:00 AM To: user@lucenenet.apache.org Cc: d...@lucenenet.apache.org Subject: Re: State / Future of the Lucene.Net Project I

RE: State / Future of the Lucene.Net Project

2018-06-21 Thread Shad Storhaug
w some things need to be done. > Will I contact with you in this way in the future? Yes. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: 小康 [mailto:xiaok...@cnblogs.com] Sent: Thursday, June 21, 2018 3:41 PM To: user@lucenenet.apache.org Subject: Re: State / Future of

RE: Hi,everyone!

2018-06-23 Thread Shad Storhaug
e, we can then use the comparison to identify the bottleneck. Thanks, Shad Storhaug (NightOwl888) -Original Message- From: 小康 [mailto:xiaok...@cnblogs.com] Sent: Friday, June 22, 2018 11:05 AM To: user@lucenenet.apache.org Subject: Hi,everyone! Hi, every one! I have some doubts. I

Re: State / Future of the Lucene.Net Project

2018-06-25 Thread Shad Storhaug
re still there and functioning. It will need to be updated again once the API is at a stable point. Let me know if there is anything you need. Thanks, Shad Storhaug (NightOwl888) Original Message Subject: Re: State / Future of the Lucene.Net Project From: 小康 To: user@lucenene

[REPORT] Lucene.Net - August 2019

2019-08-19 Thread Shad Storhaug
more automation for generating API documentation to keep it in sync with releases. == Releases == * Last Release 3.0.3 - Oct 2012 * Working toward 4.8.0 - Currently beta0006, released 2019-08-13 == People == * Last PMC Member added May 2017, Shad Storhaug (nightowl888) * Last committer

[REPORT] Lucene.NET - October, 2019

2019-10-10 Thread Shad Storhaug
Currently beta0006, released 2019-08-13 == People == * Last PMC Member added May 2017, Shad Storhaug (nightowl888) * Last committer added Oct 2019, Shannon Deminick (shazwazza) * PMC Chair rotated 20 June 2018 to Shad Storhaug (nightowl888) == Statistics == As of 2019.10.10 Metric are

[REPORT] Lucene.NET - December, 2019

2019-12-13 Thread Shad Storhaug
13 == People == * Last PMC Member added May 2017, Shad Storhaug (nightowl888) * Last committer added Oct 2019, Shannon Deminick (shazwazza) * PMC Chair rotated 20 June 2018 to Shad Storhaug (nightowl888) == Statistics == As of 2019.12.13 Metric are as follows (followed by metric from

RE: HINDI LANGUAGE ANALYZER FROM LUCENE

2020-03-25 Thread Shad Storhaug
address it? And were you using the master branch or some other branch to do the build? Regards, Shad Storhaug (NightOwl888) Project Chairperson - Apache Lucene.NET -Original Message- From: Venkadesh Thangavel Sent: Thursday, March 19, 2020 6:10 PM To: user@lucenenet.apache.org Subject

RE: lucene.net 4.8 Status

2020-04-02 Thread Shad Storhaug
not fixed – we depend heavily on contributions and user feedback to move us forward. Thanks, Shad Storhaug Project Chairman – Apache Lucene.NET From: Jeff S Sent: Thursday, April 2, 2020 8:20 PM To: Shad Storhaug Subject: lucene.net 4.8 Status Hello Shad, I'm looking to integrate luce

RE: Infix search possible in Lucene

2020-06-26 Thread Shad Storhaug
Would using the AnalyzingInfixSuggester help? https://lucenenet.apache.org/docs/4.8.0-beta8/api/Lucene.Net.Suggest/Lucene.Net.Search.Suggest.Analyzing.AnalyzingInfixSuggester.html -Original Message- From: Haberl Norbert Sent: Friday, June 26, 2020 2:36 PM To: user@lucenenet.apache.o

[ANNOUNCE] Apache Lucene.NET 4.8.0-beta00009 Released

2020-06-30 Thread Shad Storhaug
The Apache Lucene.NET team is pleased to announce the release of version 4.8.0-beta9 of Apache Lucene.NET. Apache Lucene.NET is a .NET full-text search engine framework, a C# port of the popular Apache Lucene project. Apache Lucene.NET is not a complete application, but rather a code library

[ANNOUNCE] Apache Lucene.NET 4.8.0-beta00012 Released

2020-09-20 Thread Shad Storhaug
The Apache Lucene.NET team is pleased to announce the release of version 4.8.0-beta00012 of Apache Lucene.NET. Apache Lucene.NET is a .NET full-text search engine framework, a C# port of the popular Apache Lucene project. Apache Lucene.NET is not a complete application, but rather a code library

Lucene.NET is participating in Hacktoberfest 2020

2020-10-13 Thread Shad Storhaug
are not officially affiliated with the Lucene.NET project or the Apache Software Foundation, but aim to support endeavors related to Lucene.NET as well as some other great open source projects. Happy hacking! Shad Storhaug Project Chairperson - Apache Lucene.NET

RE: Beta 4.8.0-beta00012

2020-11-10 Thread Shad Storhaug
. Thanks, Shad Storhaug Project Chairperson - Apache Lucene.NET -Original Message- From: David Ordas Sent: Monday, October 19, 2020 6:20 PM To: user@lucenenet.apache.org Subject: Beta 4.8.0-beta00012 Hello, I'm trying to update from beta 8 to beta12 but now it requ

RE: How to serialize and deserialize content in RAMDirectory

2021-01-25 Thread Shad Storhaug
Jianliang, If all you need is to share the same index across 2 machines, you could use the Lucene.Net.Replicator to accomplish it. Replicator is designed to keep indexes in sync using snapshot views of all of the index files at a particular instant in time. See the following comment for a basic

RE: how to open .cfs index

2021-01-27 Thread Shad Storhaug
ormat. Cheers, Shad Storhaug Project Chairperson - Apache Lucene.NET -Original Message- From: Guglielmo Fanini Sent: Wednesday, January 27, 2021 5:11 AM To: user@lucenenet.apache.org Subject: how to open .cfs index With the (latest) lucene 8.7 is it possible to open very old .cfs com

RE: Lusene.Net | .Net | .Net Core | .Net5 | .Net framework

2021-03-17 Thread Shad Storhaug
ing bugs that are reported and are actively working to improve the documentation. Regards, Shad Storhaug (NightOwl888) Project Chairperson - Apache Lucene.NET -Original Message- From: roncl...@giftoasis.com Sent: Wednesday, March 17, 2021 9:29 PM To: user@lucenenet.apache.org Subject: RE:

RE: Lusene.Net | .Net | SQL Server | Databases

2021-03-23 Thread Shad Storhaug
ime search (NRT) feature to continually update the Lucene index during each database update and keep a "live" view of the data in search. There might be other solutions, but these are generally the best options for most scenarios. Thanks, Shad Storhaug (NightOwl888) Project Chairp

RE: Lusene.Net | .Net | SQL Server | Databases

2021-03-25 Thread Shad Storhaug
s would be fine. Thanks, Shad Storhaug (NightOwl888) Project Chairperson - Apache Lucene.NET -Original Message- From: Hassan Iftikhar Sent: Thursday, March 25, 2021 3:17 PM To: user@lucenenet.apache.org Subject: RE: Lusene.Net | .Net | SQL Server | Databases Hi Shad, As Lucene.Net is a

RE: Lusene.Net | .Net | SQL Server | Databases

2021-03-30 Thread Shad Storhaug
nswer: https://stackoverflow.com/a/65062117, but it was based on one of the tests, which there are a lot more examples of. Thanks, Shad Storhaug (NightOwl888) Project Chairperson - Apache Lucene.NET -Original Message- From: Hassan Iftikhar Sent: Tuesday, March 30, 2021 2:24 PM To:

[ANNOUNCE] Apache Lucene.NET 4.8.0-beta00014 Released

2021-03-30 Thread Shad Storhaug
The Apache Lucene.NET team is pleased to announce the release of version 4.8.0-beta00014 of Apache Lucene.NET. Apache Lucene.NET is a .NET full-text search engine framework, a C# port of the popular Apache Lucene project. Apache Lucene.NET is not a complete application, but rather a code library

RE: Lusene.Net | .Net | Multi Language Support

2021-03-31 Thread Shad Storhaug
file system, which could be used with Lucene.NET directly without add-ons. However, I am not sure how that would perform compared to an actual file system. Thanks, Shad Storhaug (NightOwl888) Project Chairperson - Apache Lucene.NET -Original Message- From: Hassan Iftikhar Sent

RE: Reg Analyzers in Lucene .Net

2021-04-13 Thread Shad Storhaug
ances are someone has already built analyzers for Lucene in the languages you need and has blogged about it. Thanks, Shad Storhaug (NightOwl888) Project Chairperson - Apache Lucene.NET -Original Message- From: BALA KARTHIK Sent: Tuesday, April 13, 2021 7:18 PM To: user@lucenenet.

RE: Korean analyzer?

2022-01-03 Thread Shad Storhaug
ucene after the 4.8.0 stable release is done. Anyway, let me know if you are interested in doing the work to port this. The branch I pointed to is very stale and will require several updates to the project structure to integrate it with the current state of the repository. Thanks, Shad Storha

RE: Typo in Nuget package description

2022-01-18 Thread Shad Storhaug
Hi Stephan, Thanks for the report. There is no need to open an issue, as this has already been addressed in https://github.com/apache/lucenenet/pull/590 along with several other incorrect package descriptions. But please let us know if you find anything else that is incorrect. Thanks, Shad

Re: Lucene.Net.Analysis.Common v4.9.0

2023-05-24 Thread Shad Storhaug
4.9.0 was released prior to 4.8 0-beta1 by a 3rd party based on our source code. Unfortunately, they decided to release it with a confusing version number and the package name we were planning to use before we reserved it. I would not recommend that it be used. On May 24, 2023 8:00 AM, Russ

RE: Speed up indexing in Lucene.net 3.0.3

2024-02-07 Thread Shad Storhaug
> Explore batching things so one Task handles adding 25(?) Documents at a time > so there's less switching between Tasks: > > https://stackoverflow.com/questions/13731796/create-batches-in-linq > > // I hope this formats correctly, I'm not replying through a traditional > email client foreach (va