There is 1 update.
 
 
XWiki Platform / cid:jira-generated-image-avatar-5d589c1c-49cb-4610-8c9c-b0e067d6bfac XWIKI-22613 Open

Updating the history can take a very long time when there are a lot of groups

 
View issue   ยท   Add comment
 

1 update

 
cid:jira-generated-image-avatar-7d3bf6cc-f6ae-49f3-a68d-9ae29e3d4b3c Changes by Thomas Mortagne on 28/Oct/24 11:08
 
Description: Saving a document with 10000 xobject can easily take 30s and most of it is spent updating the history, and more precisely creating the diff.

One idea from [~MichaelHamann] would be to simply stop storing diffs, that would make history update/loading a
lost lot faster and simpler and might not take more space if stored compressed. It would also help get rid of the long dead JRCS eventually.

Setting "xwiki.store.rcs.nodesPerFull" property to {{1}} in xwiki.cfg might help as it tells XWiki that each version should be a complete version, so it will never try to create a diff. But it means the history will take much more room in the database, but never more than 5 times the current room (since the default is to store a complete diff every 5 version currently).