Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
mfa
/
vendor
/
palepurple
/
rate-limit
/
src
/
Adapter
/
File Content:
APCu.php
<?php namespace PalePurple\RateLimit\Adapter; /** * @author Peter Chung <touhonoob@gmail.com> * @date June 7, 2016 */ class APCu extends \PalePurple\RateLimit\Adapter { public function set($key, $value, $ttl) { return apcu_store($key, $value, $ttl); } public function get($key) { return apcu_fetch($key); } public function exists($key) { return apcu_exists($key); } public function del($key) { return apcu_delete($key); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
APC.php
520 bytes
0644
APCu.php
512 bytes
0644
Memcached.php
921 bytes
0644
Predis.php
892 bytes
0644
Redis.php
1322 bytes
0644
Stash.php
1208 bytes
0644
N4ST4R_ID | Naxtarrr