Skip to main content

Posts

Showing posts from 2017

Sitecore Session

Excessive load on ASP.NET session state store Session State and the xDB LET’S TALK ABOUT SESSION STATE WHAT’S IN A SESSION Sitecore User Group: Session State and Sitecore xDB Shared Session State configured as Private

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...

Sitecore 9

Sitecore 9 : Config Patches – Layers & Roles Sitecore 9 is here! Sitecore 9.0.1 on Azure: PaaS Deployment Guide Sitecore 9: New xDB Databases Supported Top Nine for Sitecore 9 Install Azure PaaS Deploy Sitecore-9.1.1 XP Scaled as Paas in Azure Getting started with PowerShell & Sitecore Azure Toolkit Azure PaaS Sitecore 9 in Azure Paas for Dummies Sitecore 9 xConnect is not working?? Setup Sitecore Habitat with Sitecore 9.0 Update 2 in 30 Minutes!- Part 1 Sitecore XP 9.1 – Step by step Install Guide on your machine What’s new in Sitecore 9.1 and How to install it Setup Sitecore XP1 Scaled on VMs Easy UnInstall Sitecore 9 Sitecore 9 – Install SC9 website in single step Sitecore 9 Local Installation Sitecore XP 9.0 Local Instance Setup Sitecore 9 - Step by Step installation through SIF (Sitecore Installation Framework) Sitecore XP9 Install using SIF – Executing SIF Installation Script Sitecore 9 on Windows 8.1, my experience Sitecore...

Windows server

Configure cluster Articles Windows Server 2012 Clustering Step-by-Step Step-by-Step: Configuring a 2-node multi-site cluster on Windows Server 2008 R2 – Part 1 Videos Installing Windows 2012 R2 Clustering Part 1 Installing Windows server 2012 R2 Cluster part 2 How to change Quorum Configuration in Windows server 2012 R2 Cluster

Sitecore Item Bucket

Item buckets How to Create Item Buckets in Sitecore CMS How to Create Custom Item Bucket Rules in Sitecore CMS How to Configure Item Bucket Paths in Sitecore CMS How to Make Custom Bucket Structure in Sitecore - Brimit Blog Bucketing Strategies Item Buckets and URLs How to use Sitecore Bucketing Feature in powerful way?

Sitecore search

Installing and Uninstalling Solr with Powershell Publish items to a Preview Publishing target How to Configure Solr Indexes for Sitecore Publishing Targets Troubleshooting Sitecore Solr Index THE COMPLETE GUIDE TO GETTING STARTED WITH SOLR IN SITECORE How to create a custom SOLR index How to remove all data from Sitecore SolR index 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 HOW TO CONFIGURE SOLR CORE FOR SITECORE 8.2 SEARCH INDEX Sitecore – Solr Core, Custom Index, Content Search Create a custom Solr index in Sitecore 9 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...