You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2022/11/26 16:28:26 UTC

[lucenenet] branch master updated: Added 5 part Lucene + Blazor series

This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git


The following commit(s) were added to refs/heads/master by this push:
     new c0c480409 Added 5 part Lucene + Blazor series
c0c480409 is described below

commit c0c480409e2d3424fbdcc563426c66cacbf72632
Author: Thomas Beck <th...@beckshome.com>
AuthorDate: Fri Nov 25 13:31:46 2022 -0500

    Added 5 part Lucene + Blazor series
---
 websites/site/contributing/community-links.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/websites/site/contributing/community-links.md b/websites/site/contributing/community-links.md
index 254c89cbf..db3d74c7d 100644
--- a/websites/site/contributing/community-links.md
+++ b/websites/site/contributing/community-links.md
@@ -31,6 +31,17 @@ An excellent introductory series from [Simone Chiaretta](http://codeclimber.net.
 - [Dissecting Storage Documents and Fields](https://codeclimber.net.nz/archive/2009/09/04/dissecting-lucenenet-storage-documents-and-fields/)
 - [Lucene - or how I stopped worrying and learned to love unstructured data](https://codeclimber.net.nz/archive/2009/09/08/lucene-or-how-i-stopped-worrying-and-learned-to/)
 
+### Series on using Lucene.Net with Blazor
+
+A series that covers Lucene.Net search, pagination, auto complete, faceting and highlighting in Blazor from [Thomas Beck](
+https://blog.beckshome.com/). Source for all projects [available on GitHub](https://github.com/thbst16/dotnet-lucene-search) with a [live demo site](https://dotnet-lucene-search.azurewebsites.net/) available as well.
+
+- [Lucene + Blazor, Part 1: Basic Search](https://blog.beckshome.com/2022/10/lucene-blazor-part-1-basic-search)
+- [Lucene + Blazor, Part 2: Results Paging](https://blog.beckshome.com/2022/11/lucene-blazor-part-2-results-paging)
+- [Lucene + Blazor, Part 3: Auto Complete](https://blog.beckshome.com/2022/11/lucene-blazor-part-3-auto-complete)
+- [Lucene + Blazor, Part 4: Faceting](https://blog.beckshome.com/2022/11/lucene-blazor-part-4-faceting)
+- [Lucene + Blazor, Part 5: Highlighting](https://blog.beckshome.com/2022/11/lucene-blazor-part-5-highlighting)
+
 ### Other posts
 
 - [Lazily setting the SetMultiTermRewriteMethod](https://shazwazza.com/post/how-to-set-rewrite-method-on-queries-lazily-in-lucene/)