gorse/php-gorse

PHP SDK 用于 Gorse 推荐系统

v0.4.0 2022-12-18 03:37 UTC

This package is auto-updated.

Last update: 2024-08-30 01:38:32 UTC


README

PHP SDK 用于 Gorse 推荐系统。

CI Packagist Version Packagist Downloads

安装

通过 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');