function apc_remove_lock in APC - Alternative PHP Cache 6        
                          
                  
                        Same name and namespace in other branches
- 5 apc.inc \apc_remove_lock()
 
 
2 calls to apc_remove_lock()
  - apc_handle_flush in ./apc.inc
 
  - Flush data from apc cache
 
  - apc_handle_set in ./apc.inc
 
  - Set data into apc cache.  We have to keep track of the bins ourselves since apc doesn't have the concept
of "bins".  So we keep a lookup table hash to be able to clear a single bin via flush.
 
 
File
 
   - ./apc.inc, line 265
 
  
Code
function apc_remove_lock($bin) {
  
  apc_delete('apc_lock_' . $bin);
}