Skip to main content

Measuring, Visualizing and Debugging your React Redux Reselect performance bottlenecks

In the battle of performance one tool constantly rains supreme, the all powerful profiler! In javascript land chrome has a pretty awesome profiler, but every-time I looked into our react perf issues I was always hit by a slow function called anonymous function

Using the chrome profiler

So if you open the chrome devtools, you will see a tab called performance. Click on that tab. If you are looking into CPU bound workloads click the CPU dropdown and set yourself to 6x slowdown, which will emulate a device that is much slower.

An image showing the chrome devtools

Press the record button, click around on your page, then click the record button again. You are now hit with a timeline of your app, and what scripts were ran during this time.

So what I personally like to do is find orange bars that often make up the bulk of the time. However I've often noticed the bulk of bigger redux apps are taken up by anonymous functions or functions that essentially have no name. They often look like this () => {}. This is largely because they are inside of reselect selectors. Incase you are unfamiliar selectors are functions that cache computations off the redux store. Back to the chrome profiler. One thing you can do it use the window.performance namespace to measure and record performance metrics into the browser. If you expand the user timings section in the chrome profiler you may find that react in dev mode has included some visualizations for how long components take to render.

react user timings in chrome

Adding your own visualizations

So digging into other blog posts, I found posts showing how to visualize your redux actions using the same performance API mechanisms react uses. That blog post uses redux middleware to add timings to actions. This narrowed down on our performance problems, but did not point out the exact selector that was slow. Clearly we had an action that was triggering an expensive state update, but the time was still spent in anonymous function. Thats when I had the idea to wrap reselect selector functions in a function that can append the timings. This gist is what I came up with


import {createSelector} from 'reselect';

const hasPerformanceApi =
    window &&
    window.performance &&
    window.performance.measure &&
    window.performance.mark;

const createFuncWithMark = (name, callback) => (...args) => {
    const startMark = `${name}-Startmark`;
    const endMark = `${name}-EndMark`;
    window.performance.mark(startMark);
    const result = callback(...args);
    window.performance.mark(endMark);
    window.performance.measure('♻️ ' + `${name}-Selector`, startMark, endMark);
    window.performance.clearMarks(startMark);
    window.performance.clearMarks(endMark);
    window.performance.clearMeasures(startMark);
    window.performance.clearMeasures(endMark);
    return result;
};

export const createMarkedSelector = (name, ...args) => {
    if (!hasPerformanceApi) {
        return createSelector(...args);
    }
    if (!name || typeof name !== 'string') {
        throw new Error('marked selectors must have names');
    }
    const callback = args.pop();
    const funcWithMark = createFuncWithMark(name, callback);
    args.push(funcWithMark);
    return createSelector(...args);
};

So how does this work exactly? Well its a library that wraps the function you pass to reselect that adds markers to the window to tell you how fast reselect selectors take to run. Combined with the previously mentioned blog post, you can now get timings in chrome's performance tool with selectors! You can also combine this with the redux middleware I previously mentioned to get a deeper insight into how your app is performing

a preview of selectors reporting their performance

So how do I use your gist?

You can copy the code into a file of your own. If you use reselect you probably have code that looks like the following.

export const computeSomething = createSelector([getState], (state) => { /* compute projection */ });

You just need to replace the above with the following

export const computeSomething =  createMarkedSelector('computeSomething', [getState], (state) => { /* compute projection */ });

its pretty simple, it just requires you to pass a string in the first argument slot. That string will be the name used to write to the performance API, and will show up in the chrome profiler. Inside vscode you can even do a regex find and replace to add this string.

find: const(\s?)(\w*)(\s?)=(\s)createSelector\(

replace: const$1$2$3=$4createMarkedSelector('$2',
Tagged In:
battle of the bulge javascript performance