Node.js / Can two or more instance of my applicaton run with common resource

I wrote a server which has a module of lru-caching.

In order to avoid single point of failure, I want to run two instances of my server, with common lru-caching (So if one instance insert object to my cache, the other will know it too).

How can I do it? Is node.js support it?