Redis emulation of Global Storage database, version 0.5.0 (December 2016). Provides synchronous APIs modeled on the cache.node interface for Caché database, allowing Node.js applications to use Redis as a Global Storage database. Designed for use with ewd-qoper8 worker processes where synchronous access is safe. Requires tcp-netx TCP connector with native C++ dependencies. Not suitable for conventional async Node.js apps. Low activity, last release 2016.
npm install ewd-redis-globalsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic instantiation, opening connection, setting and getting a global node, and closing the database.
Use within ewd-qoper8 worker processes or dedicated synchronous context.
Install build-essential (Linux) or Xcode (macOS) before npm install tcp-netx.
Configure Redis with requirepass and use external tools if needed; the module does not support passwords.
Test on Node 6.x as recommended; for newer versions, consider using async alternatives.
npm install tcp-netx (ensure C++ compiler is available).
Start Redis server or set custom port via options (not documented but possible).
Use: var db = new RedisGlobals(); db.open();