Skip to main content

Sitecore search








how-to-delete-all-indexed-documents-in-an-index-core-in-solr-after-schema-change

How To Make A Custom SOLR Core and use it Via Sitecore API




SearchStax with Sitecore Azure PaaS

A re-introduction to the ContentSearch API in Sitecore - Part 1

Sitecore ContentSearch – Get items from SOLR or Lucene – A base class implementation

Sitecore on Solr Cloud - Chris

Sitecore Solr - Chris

Setting Up an External ZooKeeper Ensemble

Getting Started with SolrCloud

Setting up Solr for Sitecore 8.x

Sitecore 8.2 with SOLR 6.2

Walkthrough: Setting up Solr

A Coffee in Sunny Winter Afternoon

Setting up Solr with Sitecore 7

Setting up Solr with Sitecore

Sitecore, SolrCloud and ZooKeeper Server Relationship

Using Solr or Lucene

Setup Solr for Sitecore Production

Sitecore Content deliveries and Solr with High availability

How to use Solr with Sitecore 8 – the easy way

Configuring Solr for use with Sitecore 8

How to improve SOLR Indexing and Search Performance

Videos

Sitecore User Group New England - Sitecore with Solr Cloud

Solr Indexing Sample Docs to solr core and searching with various filter query options

Apache Solr 6 Installation, Starting, Stopping

ContentSearchAPI in Sitecore 8 1 using Solr

What is Apache Solr? | Apache Solr Tutorial for Beginners

Solr Search Tutorial

Introduction to Apache Solr

Certificate



Performance

https://www.thesisscientist.com/docs/E-Booklets/5f6ef6d4-55b3-42b6-9c87-1f73b364ea9b

Set up SolR 7.2.1

https://soen.ghost.io/setting-up-solr-for-sitecore-8-x/
http://www.bugdebugzone.com/2016/11/part-2-sitecore-82-with-solr-62.html
https://sitecore-community.github.io/docs/search/solr/Configuring-Solr-for-use-with-Sitecore-8/

Added new element in schema.xml
<field name="_version_" type="plong" indexed="true" stored="true" />
<field name="_path" type="string" indexed="true" stored="true" multiValued="true" />
<fieldType name="pint" class="solr.TrieIntField" docValues="true" precisionStep="0" positionIncrementGap="0" />




Comments

Popular posts from this blog

Docker Desktop service is not running, would you like to start it?

Bellow message appear while restarting Windows laptop having Docker Desktop installed. Docker Desktop service is not running, would you like to start it? Windows will ask you for elevated access. During online search, we found below solution on stackOverflow which worked for us.  Docker: Service is not running. Windows will ask you for elevated access   Please follow this solution. Hope this helps.

SQL Server

Check Fragmentation stats SELECT dbschemas . [name] as 'Schema' , dbtables . [name] as 'Table' , dbindexes . [name] as 'Index' , indexstats . alloc_unit_type_desc , indexstats . avg_fragmentation_in_percent , indexstats . page_count FROM sys . dm_db_index_physical_stats ( DB_ID (), NULL, NULL, NULL, NULL) AS indexstats INNER JOIN sys . tables dbtables on dbtables . [object_id] = indexstats . [object_id] INNER JOIN sys . schemas dbschemas on dbtables . [schema_id] = dbschemas . [schema_id] INNER JOIN sys . indexes AS dbindexes ON dbindexes . [object_id] = indexstats . [object_id] AND indexstats . index_id = dbindexes . index_id WHERE indexstats . database_id = DB_ID () ORDER BY indexstats . avg_fragmentation_in_percent desc Rebuild Indexes DECLARE  @tsql  NVARCHAR ( MAX )   DECLARE  @fillfactor  INT SET  @fillfactor  =  90 SELECT  @tsql  =    STUFF...

Export Pdf list via Sitecore PowerShell Extension

This Sitecore PowerShell utility export a list of Pdfs for specified location  $FilePath = "master:" + (Get-Item .).Paths.Path Import-Function -Name ConvertTo-Xlsx $DownloadReport = 1 $resultObj = @() $PdfList = Get-childItem -Path $FilePath -Recurse | Where-Object { $_.TemplateName -eq "Pdf"} $ItemReferrerList = "" if( $PdfList ){     $PdfList | ForEach-Object {         ######Get-ItemReferrer Start         $ItemArray = @()         $ItemReferrer = Get-ItemReferrer -ID $_.ID | Where-Object { $_.Name -ne "Admin" -and $_.ItemPath -like "/sitecore/content/*" } | Select-Object -Property ID,Version         If( $ItemReferrer ){             $ItemReferrer | ForEach-Object {                $item = Get-Item -Path master: -ID $_.ID              $latestVersion = $item.Versions.Count     ...