タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

neo4jに関するfuyumi3のブックマーク (4)

  • Introduction - Cypher Manual

    Cypher is Neo4j’s declarative query language, allowing users to unlock the full potential of property graph databases. The Cypher Manual aims to be as instructive as possible to readers from a variety of backgrounds and professions, such as developers, administrators, and academic researchers. If you are new to Cypher and Neo4j, you can visit the Getting Started Guide → Introduction to Cypher chap

    Introduction - Cypher Manual
  • Neo4j Cypher Refcard 1.9

    Cypher is the declarative query language for Neo4j, the world’s leading graph database. Cypher matches patterns of nodes and relationship in the graph, to extract information or modify the data. Cypher has the concept of identifiers which denote named, bound elements and parameters. Cypher can create, update, and remove nodes, relationships, and properties.

  • Neo4jでグラフ問題を効果的に取り扱おう - Tech-Sketch

    世の中の課題を解決するに際しては、その対象をグラフとして表現することが広く行われます。このグラフ問題を効率的に解決するソリューションとして、グラフ構造に特化したアーキテクチャのデータベース Neo4j を紹介します。 グラフ問題 具体例 グラフ問題とはどのようなものでしょうか? ご存知でない方でも、グラフ問題を活用したシステムを日常的に使用しています。例えば、鉄道の経路検索システムです。鉄道の路線をグラフ化するには、駅をグラフのノードとして、駅のつながりをエッジとして表現します。 このグラフ問題は、Single Source Shortest Path(SSSP)問題を解決することになります。SSSP問題とは、図1のように駅と駅間の行き来できる経路およびその所要時間が与えられた場合に、ある駅を始点とし、他の駅へ行くための最短時間の経路を求めるものです。 図1 SSSP問題 ソリューショ

  • Neo4j 使い方メモ

    technical notes about web, languages, graphics or other software development stuff. 今、Neo4jを調査しているのでメモ。 Neo4jはグラフDBとよばれるNoSQL系のデータベースです。Twitterのフォロー関係のような、有向グラフ構造を保存できます。 http://neo4j.org/ Neo4jJavaからは組み込みで利用できますが、その他ネイティブ系のバインディングが全然ありません。そのかわり、RESTによるJSON/HTTPのインターフェイスが用意されています。 ここではRESTサーバーとRubyクライアントのセットでNeo4jを利用する例を紹介します。 サーバーのインストール Neo4jサーバーをコマンドラインから起動するだけなら、ダウンロードページから落としてきて起動するだけ。 サービスに

    Neo4j 使い方メモ
  • 1