Hello there!TinyRedisClient - the most lightweight Redis client written in PHP.It can be useful for people who do not need extra features and appreciate simplicity and tiny size.
If you like it please add this client to the list.Thank you.--
You received this message because you are subscribed to the Google Groups "Redis DB" group.
To view this discussion on the web visit https://groups.google.com/d/msg/redis-db/-/XdXglFfCo_oJ.
To post to this group, send email to redi...@googlegroups.com.
To unsubscribe from this group, send email to redis-db+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/redis-db?hl=en.
It's inspired from Redisent or not?
2012/7/9 Petr Trofimov <petro...@yandex.ru>
Hello there!TinyRedisClient - the most lightweight Redis client written in PHP.It can be useful for people who do not need extra features and appreciate simplicity and tiny size.
If you like it please add this client to the list.Thank you.
--
You received this message because you are subscribed to the Google Groups "Redis DB" group.
To view this discussion on the web visit https://groups.google.com/d/msg/redis-db/-/XdXglFfCo_oJ.
To post to this group, send email to redi...@googlegroups.com.
To unsubscribe from this group, send email to redis-db+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/redis-db?hl=en.
This client is certainly minimal, but it is not correct, because you
need to recurse on multi bulks.
Just split the call() into call() and parse() and write parse so that
it recurses on "*".
Cheers,
Salvatore
On Mon, Jul 9, 2012 at 5:57 PM, Petr Trofimov <petro...@yandex.ru> wrote:
> Hello there!
>
> TinyRedisClient - the most lightweight Redis client written in PHP.
> It can be useful for people who do not need extra features and appreciate
> simplicity and tiny size.
>
> https://github.com/ptrofimov/tinyredisclient
>
> If you like it please add this client to the list.
>
> Thank you.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Redis DB" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/redis-db/-/XdXglFfCo_oJ.
> To post to this group, send email to redi...@googlegroups.com.
> To unsubscribe from this group, send email to
This client is certainly minimal, but it is not correct, because you
need to recurse on multi bulks.
Just split the call() into call() and parse() and write parse so that
it recurses on "*".
Cheers,
Salvatore
On Mon, Jul 9, 2012 at 5:57 PM, Petr Trofimov <petro...@yandex.ru> wrote:
> Hello there!
>
> TinyRedisClient - the most lightweight Redis client written in PHP.
> It can be useful for people who do not need extra features and appreciate
> simplicity and tiny size.
>
> https://github.com/ptrofimov/tinyredisclient
>
> If you like it please add this client to the list.
>
> Thank you.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Redis DB" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/redis-db/-/XdXglFfCo_oJ.
> To post to this group, send email to redi...@googlegroups.com.
> To unsubscribe from this group, send email to
> redis-db+unsubscribe@googlegroups.com.
According to protocol, multibulk responses contain multiple bulks in themselves inside. Bulks are binary strings in fact. Which Redis command returns nested lists?