Legal Notice
The opinions expressed herein are my own personal opinions and do not represent my employer’s view in anyway.Top Posts
- C# HttpClient POST or PUT Json with content type application/json
- Using C# HttpClient from Sync and Async code
- Read blob file from Microsoft Azure Storage with .NET Core
- C# Get expiry timestamp from JWT token
- ASP.Net Core API - "'s' is an invalid start of a value. Path: $ | LineNumber: 0 | BytePositionInLine: 0."
- C# Using Newtonsoft and dynamic ExpandoObject to convert one Json to another
- Creating dynamic arrays and lists using Dynamic and ExpandoObject in C#
Archive
Meta
Tag Archives: index
Sitecore ContentSearch – Get items from SOLR or Lucene – A base class implementation
Reading items from Sitecore is pretty straight forward: And it is fast, unless you need to retrieve items from many paths, or need to retrieve every child of a certain base class. In these situations you resolve to using the … Continue reading
Posted in .net, c#, General .NET, Sitecore 7, Sitecore 8
Tagged ContentSearch, ContentSearchManager, index, Lucene, search, Sitecore, SOLR
2 Comments
Sitecore ContentSearch Get Latest Version
The Sitecore ContentSearch API allows you to index content in either .NET Lucene or SOLR, dramatically speeding up retrieval of content, especially when querying items that are scattered across your content tree. Content retrieved from the ContentSearch API is not … Continue reading
Posted in .net, c#, General .NET, Sitecore 7, Sitecore 8
Tagged ContentSearch, index, Lucene, Sitecore, SOLR, _latestversion
3 Comments
Sitecore 7 create item and update index at the same time
With Sitecore 7, the Sitecore index (based on Lucene.NET) have greatly improved, thus making the index even more usable. One thing you should know though, is that when you add items to Sitecore using the Sitecore.Data.Items.Item.Add() method, the index is … Continue reading
Posted in .net, c#, Sitecore 7
Tagged ContentSearchManager, index, Lucene, Sitecore, SitecoreIndexableItem
5 Comments
Sitecore poor database performance
If you experience decreasing performance in your Sitecore solution, it’s not always your fault. And it’s not always Sitecore’s fault either. The database is usually the last place I would look for performance issues. Most performance issues comes from poor XSLT … Continue reading
Get latest news using Sitecore AdvancedDatabaseCrawler Lucene index
This is the first of 2 follow-up posts on how to use the Advanced Database Crawler open source module for Sitecore. From Sitecore 6.5, Sitecore is deprecating the old Lucene index. This means that we have to redo our index … Continue reading
Using the Sitecore open source AdvancedDatabaseCrawler Lucene indexer
From Sitecore 6.5, Sitecore is deprecating the old Lucene search method. This simply means that you can no longer use the current, built in Lucene search, but has to use a new built in Lucene search. This is article 1 … Continue reading
Searching in multiple columns in Sitecore Ankiro Search
Sitecore Ankiro Search is a nightmare and a blessing. Once you have it going you have one of the most advanced search engines available. One of the cool features is that seperate fields of one Sitecore template can be indexed … Continue reading