(cache, key)
| 113 | |
| 114 | // number of chained ops on a single key |
| 115 | function getQueueCountForKey(cache, key) { |
| 116 | return cache.queue.queue[key][0]; |
| 117 | } |
| 118 | |
| 119 | // total number of queued keys |
| 120 | function getQueueCount(cache) { |
no outgoing calls
no test coverage detected