Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2891378
PhutilKeyValueCacheProxy.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
894 B
Referenced Files
None
Subscribers
None
PhutilKeyValueCacheProxy.php
View Options
<?php
abstract
class
PhutilKeyValueCacheProxy
extends
PhutilKeyValueCache
{
private
$proxy
;
final
public
function
__construct
(
PhutilKeyValueCache
$proxy
)
{
$this
->
proxy
=
$proxy
;
}
final
protected
function
getProxy
(
)
{
return
$this
->
proxy
;
}
public
function
isAvailable
(
)
{
return
$this
->
getProxy
(
)
->
isAvailable
(
)
;
}
public
function
getKeys
(
array
$keys
)
{
return
$this
->
getProxy
(
)
->
getKeys
(
$keys
)
;
}
public
function
setKeys
(
array
$keys
,
$ttl
=
null
)
{
return
$this
->
getProxy
(
)
->
setKeys
(
$keys
,
$ttl
)
;
}
public
function
deleteKeys
(
array
$keys
)
{
return
$this
->
getProxy
(
)
->
deleteKeys
(
$keys
)
;
}
public
function
destroyCache
(
)
{
return
$this
->
getProxy
(
)
->
destroyCache
(
)
;
}
public
function
__call
(
$method
,
array
$arguments
)
{
return
call_user_func_array
(
array
(
$this
->
getProxy
(
)
,
$method
)
,
$arguments
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 15:07 (3 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1125804
Default Alt Text
PhutilKeyValueCacheProxy.php (894 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment