⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
shopware
/
vendor
/
enqueue
/
redis
/
View File Name :
Redis.php
<?php declare(strict_types=1); namespace Enqueue\Redis; interface Redis { /** * @param string $script * @param array $keys * @param array $args * * @throws ServerException * * @return mixed */ public function eval(string $script, array $keys = [], array $args = []); /** * @param string $key * @param string $value * @param float $score * * @throws ServerException * * @return int */ public function zadd(string $key, string $value, float $score): int; /** * @param string $key * @param string $value * * @throws ServerException * * @return int */ public function zrem(string $key, string $value): int; /** * @param string $key * @param string $value * * @throws ServerException * * @return int length of the list */ public function lpush(string $key, string $value): int; /** * @param string[] $keys * @param int $timeout in seconds * * @throws ServerException * * @return RedisResult|null */ public function brpop(array $keys, int $timeout): ?RedisResult; /** * @param string $key * * @throws ServerException * * @return RedisResult|null */ public function rpop(string $key): ?RedisResult; /** * @throws ServerException */ public function connect(): void; public function disconnect(): void; /** * @param string $key * * @throws ServerException */ public function del(string $key): void; }