deref method

void deref()

Implementation

void deref() {
  _refCount--;
  if (_refCount == 0) {
    _cache.drop(this);
  }
}