Integrates the Redis-based Global Storage database emulation (ewd-redis-globals) with ewd-qoper8 worker processes. Version 0.1.1 is the current and only release. This module simplifies setting up a Redis-backed Global Storage and DocumentStore inside ewd-qoper8 workers, automatically handling connection opening/closing and event wiring. It is designed for use with ewd-qoper8's worker event system. The package has not been updated since 2016 and is unmaintained, with limited documentation and no active development.
npm install ewd-qoper8-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to integrate ewd-qoper8-redis in an ewd-qoper8 worker by requiring the module in the 'start' event and handling dbOpened, dbClosed, and DocumentStoreStarted events.
Ensure require('ewd-qoper8-redis') is called only within the worker's 'start' event handler.Use const connectRedisTo = require('ewd-qoper8-redis'); instead of import.Assign the entire require result to a variable: const connectRedisTo = require('ewd-qoper8-redis');Use regular function expressions (function() { ... }) in event handlers like 'dbOpened' and 'start'.Use const connectRedisTo = require('ewd-qoper8-redis'); and call connectRedisTo(this);Run 'npm install ewd-qoper8-redis' in your project directory.
Ensure require('ewd-qoper8-redis') is inside the worker's 'start' event, and that Redis server is running on localhost:6379.No dependency data recorded yet.