Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Node Content Repository for php.

License

NotificationsYou must be signed in to change notification settings

gdbots/ncr-php

Repository files navigation

Node Content Repository for php. Using this library assumes that you've already created and compiled your own pbj classes using thePbjc and are making use of the"gdbots:ncr:mixin:*" mixins fromgdbots/schemas.

If your project is using Symfony use thegdbots/ncr-bundle-php to simplify the integration.

Nodes and Edges

Anode or vertex is anoun/entity in your system. An article, tweet, video, person, place, order, product, etc. The edges are therelationships between those things like "friends", "tagged to", "married to", "published by", etc.

This library doesn't provide you with a graph database implementation. It's concerned with persisting/retrieving nodes and edges. Graph traversal would still need to be provided by another library. It is recommended that data be replicated or projected out of the Ncr (or layered on top likeGraphQL) into something suited for that purpose (e.g. Neo4j, Titan ElasticSearch).

NodeRef

A NodeRef is a qualified identifier to a node/vertex. It is less verbose than aMessageRef as it is implied that node labels must be unique within a given vendor namespace and therefore can be represented in a more compact manner.

NodeRef Format: vendor:label:idThe"vendor:label" portion is aSchemaQName

Examples:

acme:article:41e4532f-2f58-4b9d-afc8-e9c2cbcb4abatwitter:tweet:789234931599835136youtube:video:EG0wQRsXLi4

Nodes do not actually have anode_ref field, they have an_id field. TheNodeRef is derived by taking theSchemaQName of the node's schema along with its_id. TheNodeRef is an immutable value object which is used in various places without needing to actually have the node instance.

Ncr

The Ncr is the service responsible for node persistence. It is intentionally limited to basic key/value storage operations (e.g. put/get/find by index) to ensure the underlying implementation can be swapped out with little effort or decorated easily (caching layers for example).

Available repository implementations:

  • DynamoDb
  • Psr6(gives you Redis, File, Memcached, Doctrine, etc.)
  • InMemory

Review theGdbots\Ncr\Ncr interface for reference on the available methods.

Ncr::findNodeRefs

The Ncr is a simple key/value store which means querying is limited to the id of the item or a secondary index. An example of a secondary index would be the email or username of a user, the slug of an article or the isbn of a book.

AnIndexQuery is used tofindNodeRefs that match a query against a secondary index.

An example of using a IndexQuery:

$query = IndexQueryBuilder::create(SchemaQName::fromString('acme:user'),'email','homer@simpson.com')    ->setCount(1)    ->build();$result =$this->ncr->findNodeRefs($query);if (!$result->count()) {thrownewNodeNotFound('Unable to find homer.');}$node =$this->ncr->getNode($result->getNodeRefs()[0]);

Not all storage engines can enforce uniqueness on a secondary index so the interface also cannot make that assumption. Because of this thefindNodeRefs may return more than one value. It is up to your application logic to deal with that.

Ncr::pipeNodes

Getting data out of the Ncr should be dead simple, it's just json after all. Use thepipeNodes orpipeNodeRefs methods to export data. Thegdbots/ncr-bundle-php provides console commands that make use of this to export and reindex nodes.

Exporting nodes using pipeNodes:

foreach ($ncr->pipeNodes(SchemaQName::fromString('acme:article'))as$node) {echojson_encode($node) .PHP_EOL;}

NcrCache

NcrCache is a first level cache which is ONLY seen and used by the current request. It is used to cache all nodes returned from get node request(s). This cache is used duringPbjx request processing or if the Ncr is running in the current process and is using the MemoizingNcr.

This cache should not be used when asking for a consistent result.

NcrCache is NOT an identity map and theNcr is NOT an ORM. In some cases you may get the same exact object but it's not a guarantee so don't do something like this:

$nodeRef = NodeRef::fromString('acme:article:123');$cache->getNode($nodeRef) !==$cache->getNode($nodeRef);

If you need to check equality, use the message interface:

$node1 =$cache->getNode($nodeRef);$node2 =$cache->getNode($nodeRef);$node->equals($node2);// returns true if their data is the same

NcrLazyLoader

NcrCache and other request interceptors make use of this service to batch load nodes only if they are requested. An example of this is when loading an article you may want to fetch the author or related items, but not always. Rather than force the logic to exist in the loading of an article, something else can manage that.

Lazy loading is generally application specific so this library provides some tools to make is easier.

Example lazy loading:

publicfunctiononSearchNodesResponse(ResponseCreatedEvent$pbjxEvent):void{$response =$pbjxEvent->getResponse();if (!$response->has('nodes')) {return;    }// for all nodes in this search response, mark the creator// and updater for lazy load.  if they get requested at some point// in the current request, it will be batched for optimal performance$this->lazyLoader->addEmbeddedNodeRefs($response->get('nodes'), ['creator_ref' =>'acme:user','updater_ref' =>'acme:user',    ]);}

NcrSearch

The Ncr provides the reliable storage and retrieval of Nodes. NcrSearch is in most cases a separate storage provider. For example, DynamoDb for Ncr and ElasticSearch for NcrSearch. In fact, the only implementation we have right now is ElasticSearch.

When using thegdbots/ncr-bundle-php you can enable the indexing with a simple configuration option. The bundle also provides a reindex console command.

Searching nodes is generally done in a request handler. Here is an example of searching nodes:

publicfunctionhandleRequest(Message$request,Pbjx$pbjx):Message{$parsedQuery = ParsedQuery::fromArray(json_decode($request->get('parsed_query_json','{}'),true));$response = SearchUsersResponseV1::create();$this->ncrSearch->searchNodes($request,$parsedQuery,$response,        [SchemaQName::fromString('acme:user')]    );return$response;}

[8]ページ先頭

©2009-2025 Movatter.jp