module RedisClient::PIDCache::CoreExt

Public Instance Methods

_fork() click to toggle source
Calls superclass method
# File lib/redis_client/pid_cache.rb, line 19
def _fork
  child_pid = super
  PIDCache.update! if child_pid == 0
  child_pid
end