如何在PHP中使用predis执行普通Redis查询

vjrehmav  于 2022-10-31  发布在  Redis
关注(0)|答案(1)|浏览(179)

如何使用PHP predis包向Redis发送原始命令

$client->executeRaw('INTERSECTS vehicle LIMIT 1000 GET geofence geofence_id');

它是否适用

deyfvvtc

deyfvvtc1#

您需要将命令设置为数组。

$client->executeRaw(['INTERSECTS', 'vehicle', 'LIMIT', '1000', 'GET', 'geofence', 'geofence_id']);

如https://github.com/predis/predis#adding-new-commands需详细信息,请参阅www.example.com。

相关问题