terça-feira, 5 de novembro de 2013

Trying to store a checked out item (sites/default.aspx) in the object cache. This may be because the checked out user is accessing the page, or it could be that the SharePoint system account has the item checked out.

Trying to store a checked out item (sites/default.aspx) in the object cache.  This may be because the checked out user is accessing the page, or it could be that the SharePoint system account has the item checked out.  To improve performance, you should set the portalsuperuseraccount property on the web application.

Este evento ocorre se o usuário “Super Reader” e “Super User” estão na configuração default. 
Estes usuários são responsável pelo cache dos objetos do SharePoint. Você precisa criar dois usuários e configurar eles no SharePoint como “Super Reader” e “Super User”.


Eu prefiro PowerShell para essa configuração, já tem um script pronto e a explicação do mesmo no artigo. E.g. 
 
$wa = Get-SPWebApplication -Identity "<WebApplication>"
$wa.Properties["portalsuperuseraccount"] = "<SuperUser>"
$wa.Properties["portalsuperreaderaccount"] = "<SuperReader>"
$wa.Update()

[]

Nenhum comentário:

Postar um comentário