How To Optimize SharePoint Custom Pages Using HTML 5 IndexedDB API

In this article, we will discuss another obvious performance issue with SharePoint Solutions involving the large volume of data transactions surfacing SharePoint Custom Pages.

This could become more prominent if we have strict governance in place and we are not allowed to make use of advanced server side options (Custom Web Service End Point, MTA Enabled Modules etc.).

In one of my recent assignments, I came across a similar scenario where I needed to crawl the data from an external Web Service end-point and surface the data on SharePoint Pages. Since the anticipated data volume was huge and traditional caching approaches like Cookies wont’ work due to size limitations, in pursuit of the solution, I have gone through the “HTML5 Web Storage APIs” that allows you to set up an In-Browser Transactional Database System called “IndexedDB”.

Here is a quick introduction of IndexedDB but for details, I recommend you to visit IndexedDB.

“IndexedDB is a transactional database system, like an SQL-based RDBMS. However, unlike SQL-based RDBMSes, which use fixed-column tables, IndexedDB is a JavaScript-based object-oriented database. IndexedDB lets you store and retrieve objects that are indexed with a key; any objects supported by the structured clone algorithm can be stored. Operations performed using IndexedDB are done asynchronously, so as not to block applications.”

I also want to thank “Raymond Camden” for his detailed research on Storage Limits for IndexedDB. I believe you must refer this link to understand the limits carefully before getting into concrete implementations.

Now, let’s try to understand the implementation details by using the following diagram.

Solution Architecture Diagram & Explanation

1

In this solution, the SharePoint Page will try to look for the required data in Local Indexed DB created to support this page. If the data is not found in local database, the page will issue the request for data from SharePoint List.

Since we are dealing with “100,000” Items present in SharePoint List, I made use of “REST API + OData Continuation” data access strategy to overcome SharePoint List Threshold Limits. This mechanism will access only 100 List Items at a time and it is safe to extend this limit up to 2000 items per fetch.

Each fetch will a JSON Object that will be persisted into Indexed DB as individual record. I opt for this strategy to reduce the page load time. If the number of items are not much you can add each item as separate record.

Every subsequent data call will be automatically diverted to the local database as primary source.

Additionally we can add “Auto Refresh Modules” to keep the local database fresh with SharePoint List Changes and sync the changes with Indexed DB “Asynchronously”. Ideally speaking, for a complete solution, “Auto Refresh Modules” are must to have.

So, this is all about execution summary for this solution. Now, let’s have look at implementation details as follows-

I have created a SharePoint List with two columns and “100,000” Items added to it, as shown below.

Demo

This list will be acting as data source for the page. In actual scenarios, this source could be a Web Service End Point which can provide voluminous data on demand.

2

3

Before getting into the code, let’s see how this page will behave on execution. Demonstrating the page in action will be helpful later when we get a deep dive in code.

If we run the page, we will see this page took about “3 minutes” to get the execution completed.

The first execution cycle will include the following actions.

  1. Initialize IndexedDB Database
  2. Query SharePoint List
  3. Add REST API Response to IndexedDB
  4. Load page with data from IndexedDB

Since we are adding the data to the store asynchronously, the overall application will remain functional even it is taking 3 minutes to complete.

4

The following screenshot is showing the data adding to IndexedDB asynchronously.

5

We can also review the Indexed DB initialized as the part of this request using “Developer Tools or F12 Key” with in the browser, as shown below.

6

We can explore each item in each of the JSON Objects, as shown below.

7

Now, refresh the page to see the execution again and we can see roughly “1 second” to complete the page request.

The subsequent execution cycle will include the following actions.

  1. Query IndexedDB for data
  2. Load page with data from IndexedDB

So, we can see how we can trim the execution path by using a well-defined strategy.

8

Code Analysis

Let’s do the code analysis to understand the concrete implementation.

In Step 1, we are enclosing some of the literals as variables and will refer theses variables later in the code.

9

In Step 2, we are checking if the respective Indexed Database is initialized already or not. If not, initialize the database. In this demo, let’s call this database as “Products”.

10

In Step 3 , the “onsuccess” event handler will get executed and database object will get stored in a global variable “SharePointOptimization.sharePointStore”. This variable will be acting as start point for all the operations on the database in future.

In Step 4, the default error handling module is assigned as callback function to “onerror”, “onblocked”, “onabort” event handler.

11

In Step 5, we are querying SharePoint List using REST API.

12

In Step 6, we are making use of OData Continuation Techniques to overcome SharePoint List Threshold restrictions.

In this step, we also call “AddDataToStore” function that will add SharePoint List Items coming as JSON Object to the Local Indexed Database. It is important to recall that in this demo. I am storing 1 JSON Object as 1 record in the database where each object contains information for 100 List Items.

13

In Step 7, we are adding JSON Objects to IndexedDB. In order to do that, we need to perform the following operations.

  • Initialize Transaction with Read Write Operation Permissions
  • Get Handle on “Products” Database inside IndexedDB Data Stores
  • Call asynchronous “add” method to add JSON Object to “Products” Store

In Step 8, we are calling “QuerySharePoint” function to query the data from SharePoint List in case data is not available in Local Database.

14

Steps 9, 10, 11 explain about “ReadSPStore” function where we will read the data from Local Data Store (IndexedDB).

In Step 9, the following operations are performed.

  • Initialize Transaction with Read Operation Permissions
  • Get Handle on “Products” Database inside IndexedDB Data Stores
  • Call asynchronous “count” method to get total number of JSON Object available in “Products” Store

In Step 10, the following operations are performed.

  • Check for get count request status
  • If success Initialize Indexed DB Cursor by calling asynchronous “openCursor” function

In Step 11, the following operations are performed.

  • Check for get cursor request status
  • If success read the record from IndexedDB and add to the local array variable
  • Call “continue” function as long as there are items left in local store
  • Once all data is read and save to the local array pass this array to “RenderUI” function to render this data on the interface as required

15

In Step 12, we can plug any UI engine to produce more intuitive UI as applicable, for the sake of this demo I am writing out the Count of Store records * 100 (since each record contains 100 Items) to show the total number of items stored in the local store.

16

Steps 13, 14, 15 show you a helper function to check if local store contains required data or not. It helps to decide if we need to read data from Local Store or SharePoint List

“GetProductCount” function is quite similar to the “ReadSPStore” function except it perform a lesser number of operations.

17

In Step 16, we will initialize Local SharePoint Store by calling “InitializeSharePointStore” function.

18

In Step 17, we can see some of the UI elements to build a basic UI for this demo.

19

Point of caution

Before implementing this mechanism, make sure you have identified all the compatibility issues around this corner.

I would recommend you to refer the following site every now and then to make sure you are using features supported by the targeted browsers.

 

  • http://caniuse.com/#search=IndexedDb

 

20

Since I have made use of artifacts which are compatible with SharePoint Online Development Guidelines, so we can use this approach with pages hosted in SharePoint Online as well.

That is all for this demo.

Hope you find it helpful.