Articles about European Sharepoint Hosting Service
SharePoint 2016 Hosting – HostForLIFE.eu :: How to Improve Site Collection’s Performance
Fast Site Collection Creation is a mechanism designed to improve provision performance of Site Collections where provisioning is simply a copy operation which happens at the Content Database level.
Step 1
Firstly, to enable the Fast Site Collection Creation for a template, you would need to run the following PowerShell Command:
1 |
Enable-SPWebTemplateForSiteMaster -Template “STS#0″ -CompatibilityLevel 15 |
The above command is Template Specific, so you need to run the similar command to enable fast site creation on all those webtemplates that you need to include in the process of fast site collection creation.
Step 2
Next, create a SiteMaster in one of the Content databases. A SiteMaster is like a empty site collection that preserves the settings (from the template it was created with), that will be needed for the new Site Collection to be created. It preserves the Features to activate on copy of the site collection, template setting etc. To Create a SiteMaster, you need a Content database and a fast site creation enabled template that it will be created using. Let’s get the DB where we have already provisioned a site collection:
1 |
$DB = Get-SPContentDatabase -site http://sp2016vm:4430/sites/team |
Now, create a SiteMaster in it:
1 |
New-SPSiteMaster -ContentDatabase $DB -Template “STS#0″ |
You can also use Get-SPSiteMaster to confirm if the SiteMaster has been created in a particular database.
Similarly, you can use Remove-SPSiteMaster to remove the SiteMaster from your Content database.
Step 3
inally, provision a new site collection using CreateFromSiteMaster parameter:
1 |
New-SPSite http://sp2016vm:4430/sites/FastSite1 -ContentDatabase $DB -CompatibilityLevel 15 -CreateFromSiteMaster -OwnerAlias “sp2016\sp16_farm” |
Site Collections are now created by copying at Content Database level with Fast Site Collection Creation enabled. The Feature Activation that usually happens during regular Site Collection creation does not occur.
SharePoint 2013 Hosting Recommendation
HostForLIFE.eu’s SharePoint 2013 Hosting solution offers a comprehensive feature set that is easy-to-use for new users, yet powerful enough for the most demanding web developer expert. Hosted SharePoint Foundation 2013 is the premiere web-based collaboration and productivity enhancement tool on the market today. With SharePoint 2013 Foundation, you can quickly access and manage documents and information anytime, anywhere though a Web browser in a secure and user friendly way. SharePoint hosting services start at only at €9.99/mo, allowing you to take advantage of the robust feature set for a small business price. HostForLIFE.eu offers a variety of hosted SharePoint Foundation 2013 plans as well as dedicated SharePoint 2013 Foundation options.
Print article | This entry was posted by Matthew Gilbert on September 22, 2015 at 9:32 am, and is filed under European SharePoint 2013 Hosting, European Sharepoint Hosting. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |