Heya folks!
I have this Umb13 site that’s experiencing some issues, our database cache has been corrupt or generally doesn’t feel great. When I go to the Published Status section of the backoffice I see this:
I’ve tried hitting the Rebuild button under the Database Cache section, and since you don’t really get any indication of progress here i’ve been forced to look in the database, here’s what I’ve found and the queries I’ve run:
SELECT [key], [value], [updated]
FROM [dbo].[umbracoKeyValue]
WHERE [key] = 'Umbraco.Web.PublishedCache.NuCache.Serializer';
key value updated
Umbraco.Web.PublishedCache.NuCache.Serializer MessagePack 2026-05-05 21:02:43.853
I followed the instructions in this link: How to check Umbraco Database Cache Rebuild operation has finished
From what this result gives me, the Cache rebuilding hasn’t been run since the 5th of May (today is the 20th).
I’ve also run this query:
SELECT
(SELECT COUNT(*) FROM cmsContentNu) AS CurrentRows,
(SELECT COUNT(*) * 2 FROM umbracoNode
WHERE nodeObjectType IN (
'C66BA18E-EAF3-4CFF-8A22-41B16D66A972',
'B796F64C-1F99-4FFB-B886-4BF4BC011A9C'
)) AS ExpectedRows
Which I got from an AI agent, it tells me this:
CurrentRows ExpectedRows
334 34446
I ran this query maybe 20minutes ago (it’s 08:50 AM now) and then I just got 330 Current Rows, now it’s 334 (again, I don’t really know if the rebuilding of the cache is actually taking place and is just very slow).
So to the issue at hand, how can I tell if the rebuilding of the cache is actually running or not? I’ve searched for NuCache and other related stuff in the logviewer but I get no information. The only “real” indication I have is that it jumped from 330 CurrentRows to 334.
What is the solution here? How can I make sure the Database Cache is rebuilt successfully?




