-
Bug
-
Resolution: Fixed
-
Medium
-
3.4, 4.2.13, 4.3.3
-
None
-
2
-
For spaces with thousands of pages, the Space Admin loads slowly. Page load performance decreases drastically in spaces with >5000 pages (in local testing, it was about a seven second load time).
The editspace.action invokes the EditSpaceEntryAction.class, which makes a getPages() call:
public class EditSpaceEntryAction extends AbstractEditSpaceAction { public List getAvailablePages() { if ((availablePages == null) && (getSpace() != null)) { availablePages = new ArrayList(pageManager.getPages(getSpace(), true)); Page blankPageAtTop = new Page(); blankPageAtTop.setTitle(""); availablePages.add(0, blankPageAtTop); // Give user the option not to select any home page } Collections.sort(availablePages); return availablePages; } public void setSpaceManager() { } }
This is done to populate the set Home Page drop-down. The current approach does not scale well and an alternative means of populating that filed OR settings the Home Page would be ideal.
- mentioned in
-
Page No Confluence page found with the given URL.
-
Page No Confluence page found with the given URL.
-
Page No Confluence page found with the given URL.
-
Page No Confluence page found with the given URL.
-
Page No Confluence page found with the given URL.
-
Wiki Page Loading...
-
Wiki Page Loading...
-
Wiki Page Loading...
-
Wiki Page Loading...
I tested this, generated 1000 pages, auto complete works well