module RedisClient::PIDCache::CoreExt

def _fork

def _fork
  child_pid = super
  PIDCache.update! if child_pid == 0
  child_pid
end