chenjia404 / php-gorse
PHP SDK for Gorse 推荐系统
dev-main
2024-04-12 09:46 UTC
Requires
- ext-redis: *
- guzzlehttp/guzzle: ^7.0
Requires (Dev)
- phpunit/phpunit: ^9.3
This package is auto-updated.
Last update: 2024-09-12 10:52:44 UTC
README
PHP SDK for Gorse 推荐系统。
安装
通过 composer 安装
composer require gorse/php-gorse
使用方法
插入反馈并获取推荐
$client = new Gorse("http://127.0.0.1:8088/", "api_key"); $rowsAffected = $client->insertFeedback([ new Feedback("read", "10", "3", "2022-11-20T13:55:27Z"), new Feedback("read", "10", "4", "2022-11-20T13:55:27Z"), ]); $client->getRecommend('10');