which programming languages does redis json support in addition to those mentioned on its page?
RedisJSON clients in this list can be found here: https://oss.redislabs.com/redisjson/#client-libraries
Also, since RedisJSON is a Redis Module almost any client on the Redis clients list https://redis.io/clients can be used to work with RedisJSON.
I would be nice to integrate the API of this module in a PHP package to improve the interaction, even if it’s already working
Christophe,
Sorry but I’m not a PHP expert if you’re willing to put the effort and develop such client we’ll be glad to review and publish it
Guy
@Christophe_Jean
I think most of Redis client libraries support executing Redis command API. you may check with Laravel other PHP clients for Redis, below is an example:
https://laravel.com/docs/7.x/redis
$values = Redis::command('JSON.SET', ['doc' ,'.', '{"str": "example", "int": "20"}']);
Just try it, all the best.
Echo what @suyog is saying - often time the best route to working with modules is with direct commands (and you’ll be ready for RESP3 clients).