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

藏色散人
풀어 주다: 2023-04-11 07:16:01
앞으로
3314명이 탐색했습니다.

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으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!