This is an automated email from the ASF dual-hosted git repository.
nightowl888 pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/lucenenet-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new b1499da82 New website version built
b1499da82 is described below
commit b1499da82541579473683ea01ae25e05ef2c563e
Author: NightOwl888 <[email protected]>
AuthorDate: Sat Oct 14 11:30:58 2023 +0000
New website version built
---
manifest.json | 6 +++---
quick-start/index.html | 2 +-
quick-start/introduction.html | 4 ++--
quick-start/tutorial.html | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/manifest.json b/manifest.json
index de9ff3a3b..a0c201a36 100644
--- a/manifest.json
+++ b/manifest.json
@@ -400,7 +400,7 @@
"output": {
".html": {
"relative_path": "quick-start/index.html",
- "hash": "Ps0mNhkgRq2h9l2u5BulTwsoOzShjAH8JoOs+CgKxFQ="
+ "hash": "FBzUQKZfXJSoXeSdjgOOEo4tovzdLyQOU93J5/w/+UM="
}
},
"is_incremental": false,
@@ -412,7 +412,7 @@
"output": {
".html": {
"relative_path": "quick-start/introduction.html",
- "hash": "O15Y9aDRhbc6DMzOvAK1NW+di4tzVNESSX4Qr89sI5s="
+ "hash": "I1OGvDoXazHi2+pOXVanw4WurEXfqj6uZp593wzX7t4="
}
},
"is_incremental": false,
@@ -448,7 +448,7 @@
"output": {
".html": {
"relative_path": "quick-start/tutorial.html",
- "hash": "nvxhWF9DyPUgJN9yqRpS+wdPaBsBnLDI8Rvl81cu4WA="
+ "hash": "vzXR3qxk3GLX8VsX+cka3ptFxnFehtMaHj/8eBPFfWM="
}
},
"is_incremental": false,
diff --git a/quick-start/index.html b/quick-start/index.html
index 6e8270d5e..54b203930 100644
--- a/quick-start/index.html
+++ b/quick-start/index.html
@@ -77,7 +77,7 @@
<hr>
<h2 id="greetings">Greetings</h2>
<p>Welcome. We are glad you're here. We hope this Quick Start section makes it
easy to start learning about Lucene.NET. We assume you don't know anything
about this awesome search library and are encountering it for the first
time.</p>
-<p>Our goal here is to get you enough information and experience with
Lucene.NET so that you have a sense for what it is and how it might be useful
to you. We also hope you will come away from this section with enough knowledge
to be able to be able to continue your leaning journey with the various other
resources that are available.</p>
+<p>Our goal here is to get you enough information and experience with
Lucene.NET so that you have a sense for what it is and how it might be useful
to you. We also hope you will come away from this section with enough knowledge
to be able to continue your leaning journey with the various other resources
that are available.</p>
<p>Lucene.NET is a sophisticated search library that has a lot of advanced
features. But for now we are not concerned about that. We want to get you up
and running quickly with the basic info you need to take Lucene.NET for a
spin.</p>
<h2 id="introduction">Introduction</h2>
<p>The Introduction page provides a bit of context about Lucene.NET. You'll
learn where it came from and what it can do for you. See the <a class="xref"
href="introduction.html">Introduction</a> page.</p>
diff --git a/quick-start/introduction.html b/quick-start/introduction.html
index 2f719a4d8..2ba7e6103 100644
--- a/quick-start/introduction.html
+++ b/quick-start/introduction.html
@@ -80,10 +80,10 @@
<p>Apache Lucene is the core search library used by popular open source search
servers like Apache Solr, ElasticSearch and OpenSearch. The reason Apache
Lucene is so widely used is because it's extremely powerful and can index large
amounts of data quickly -- think 100s of GB/Hours. And it can perform full text
search on that data in sub-second time. And unlike traditional sql databases,
it's data engine is optimized for full text search.</p>
<p>The codebase for Apache Lucene is very mature. In March 2020, the open
source project celebrated it's 20th birthday. You can scroll through the years
and see the major <a href="https://www.elastic.co/celebrating-lucene">Apache
Lucene milestones</a>.</p>
<p>Apache Lucene.NET 4.8 is an open source project who's aim is to be a line
by line c# port of java based Apache Lucene 4.8. This port makes the power of
Lucene available to all .NET developers. And makes it easy for them to
contribute to the project or customize it since it's pure C#.</p>
-<p>Currently Lucene.NET 4.8 is in Beta but it is extremely stable and many
developers already use it in production. It has far more features then
Lucene.NET 3.03 and has much better unit test coverage then the older version.
Lucene.NET has more than 7800+ passing unit tests. This test coverage is what
makes Lucene.NET so stable.</p>
+<p>Currently Lucene.NET 4.8 is in Beta but it is extremely stable and many
developers already use it in production. It has far more features than
Lucene.NET 3.03 and has much better unit test coverage than the older version.
Lucene.NET has more than 7800+ passing unit tests. This test coverage is what
makes Lucene.NET so stable.</p>
<h2 id="evolution-of-lucene">Evolution of Lucene</h2>
<p>Porting Lucene from java to C# is a huge undertaking. There are over <a
href="https://lucenenet.apache.org/images/contributing/source/lucenenet-repo-lines-of-code--jan-2022.png">644K
lines of code</a> not counting outside dependencies. This is why only a few
specific versions have been ported. The prior Lucene.NET release was version
3.0.3 and the current release (which receives all the focus) is Lucene.NET 4.8.
Version 4.8 is now in late Beta and, as I already mentioned, is used i [...]
-<p>You might be aware that Java Lucene is at version 9.x. But don't be misled
by the number. The step up in features between 3.x and 4.x was the biggest in
Lucene's history and after that it was followed my many smaller releases.
<strong>So the reality is that Lucene.NET 4.8 contains the vast majority of
features found in Java Lucene 9.x and in fact Lucene 4.x is more similar to
Lucene 9.x than to Lucene 3.x.</strong> If you'd like to dive deeper into this
topic, <a href="https://www. [...]
+<p>You might be aware that Java Lucene is at version 9.x. But don't be misled
by the number. The step up in features between 3.x and 4.x was the biggest in
Lucene's history and after that it was followed by many smaller releases.
<strong>So the reality is that Lucene.NET 4.8 contains the vast majority of
features found in Java Lucene 9.x and in fact Lucene 4.x is more similar to
Lucene 9.x than to Lucene 3.x.</strong> If you'd like to dive deeper into this
topic, <a href="https://www. [...]
<h2 id="lucenenet-is-multi-platform">Lucene.NET is Multi-Platform</h2>
<p>Lucene.NET 4.8 runs everywhere .NET runs: Windows, Unix or Mac. And as a
library it can be used to power search in desktop applications, websites,
mobile apps (iOS or Android) or even on IoT devices like the Raspberry Pi. And
because it's licensed under the permissive Apache 2.0 license it's typically
considered suitable for both commercial and non-commercial use.</p>
<h2 id="lucenes-lsm-inspired-architecture">Lucene's LSM Inspired
Architecture</h2>
diff --git a/quick-start/tutorial.html b/quick-start/tutorial.html
index 53f6dde26..7d291b9af 100644
--- a/quick-start/tutorial.html
+++ b/quick-start/tutorial.html
@@ -181,7 +181,7 @@ IndexWriter writer = new IndexWriter(indexDir, indexConfig);
//Add three documents to the index
Document doc = new Document();
-doc.Add(new TextField("titleTag", "The Apache Software
Foundation - The world's largest open source foundation.",
Field.Store.YES));
+doc.Add(new TextField("title", "The Apache Software Foundation
- The world's largest open source foundation.", Field.Store.YES));
doc.Add(new StringField("domain", "www.apache.org/",
Field.Store.YES));
writer.AddDocument(doc);