>  기사  >  백엔드 개발  >  neo4j(그래프 데이터베이스) PHP 라이브러리를 공유하세요!

neo4j(그래프 데이터베이스) PHP 라이브러리를 공유하세요!

藏色散人
藏色散人앞으로
2022-07-28 14:53:063316검색

git 프로젝트 주소 church/neo4j: https://github.com/fireqong/neo4j

Introduction

PHP 기반 neo4j 라이브러리를 사용하면 neo4j PHP 라이브러리에 더욱 편리하게 접속할 수 있습니다. 소스 문서 링크 주소 neo4j http api: https://neo4j.com/docs/http-api/current/actions/

설치 환경 요구 사항

PHP >= 7.4

Installation

composer require church/neo4j

Usage

초기화

$app = new \Church\Neo4j\Application("http://127.0.0.1:7474", "neo4j", "neo4j");
$app->discovery();

쿼리문

$statement = (new \Church\Neo4j\Statement('CREATE (n $props) RETURN n)'))->params([
    'props' => [
        'name' => 'test'
    ]   
]);

거래 열기

$statements = \Church\Neo4j\StatementRepository::add($statement);
$transaction = $app->transaction($statements);
$transaction->begin();

거래 제출

$result = $transaction->commit();

if ($result->getRawResponse()->getStatusCode() == 200) {
    print_r($result->getData());
}

거래 유효 기간 연장

default expiry time is 60 seconds.$transaction->keepAlive();

Rollback

$transaction->rollback();

거래 열기 및 제출

$result = $transaction->beginAndCommit();print_r($result);

단위 테스트

composer install
./vendor/bin/phpunit

위 내용은 neo4j(그래프 데이터베이스) PHP 라이브러리를 공유하세요!의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 segmentfault.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제