chenjia404/php-gorse

PHP SDK for Gorse 推荐系统

dev-main 2024-04-12 09:46 UTC

This package is auto-updated.

Last update: 2024-09-12 10:52:44 UTC


README

PHP SDK for 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');