Open
Description
Summary
- NR extension wraps calls to
Redis
extension, but some functions are missing (mget
in particular) - What about
RedisCluster
? The exposed interface is quite similar, is it possible to also wrap it?
Desired Behavior
Redis::mget
function is monitored by NRRedisCluster::*
calls are monitored by NR
Possible Solution
As far as I understand the code, the magic should happen here 😅
Additional context
Redis::mget
is used by the Redis cache adapter provided in Symfony applications. Then in our application we seeset
calls, but nomget
- Symfony also provides some adapters for
RedisCluster
, but it's hard to bypass the framework to manually corresponding database records 😕
🙇♂️