apc_fetch()
apc_fetch(  $key) 
                
Parameters
| $key | 
| TBufferedTransport | Buffered transport. Stores data to an internal buffer that it doesn't actually write out until flush is called. For reading, we do a greedy read and then serve data out of the internal buffer. | 
| TCurlClient | HTTP client for Thrift | 
| TFramedTransport | Framed transport. Writes and reads data in chunks that are stamped with their length. | 
| THttpClient | HTTP client for Thrift | 
| TMemoryBuffer | A memory buffer is a tranpsort that simply reads from and writes to an in-memory string buffer. Anytime you call write on it, the data is simply placed into a buffer, and anytime you call read, data is read from that buffer. | 
| TNonblockingSocket | Base interface for a transport agent. | 
| TNullTransport | Transport that only accepts writes and ignores them. | 
| TPhpStream | Php stream transport. Reads to and writes from the php standard streams php://input and php://output | 
| TSocket | Sockets implementation of the TTransport interface. | 
| TSocketPool | Sockets implementation of the TTransport interface that allows connection to a pool of servers. | 
| TTransport | Base interface for a transport agent. |