Cache VConnections */
| 6179 | |
| 6180 | /* Cache VConnections */ |
| 6181 | TSAction |
| 6182 | TSCacheRead(TSCont contp, TSCacheKey key) |
| 6183 | { |
| 6184 | sdk_assert(sdk_sanity_check_iocore_structure(contp) == TS_SUCCESS); |
| 6185 | sdk_assert(sdk_sanity_check_cachekey(key) == TS_SUCCESS); |
| 6186 | |
| 6187 | FORCE_PLUGIN_SCOPED_MUTEX(contp); |
| 6188 | |
| 6189 | CacheInfo *info = reinterpret_cast<CacheInfo *>(key); |
| 6190 | Continuation *i = reinterpret_cast<INKContInternal *>(contp); |
| 6191 | |
| 6192 | return reinterpret_cast<TSAction>(cacheProcessor.open_read(i, &info->cache_key, info->frag_type, info->hostname, info->len)); |
| 6193 | } |
| 6194 | |
| 6195 | TSAction |
| 6196 | TSCacheWrite(TSCont contp, TSCacheKey key) |