博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
REST::Neo4p – PERL版本的”OGM”
阅读量:6913 次
发布时间:2019-06-27

本文共 1353 字,大约阅读时间需要 4 分钟。

REST::Neo4p – PERL版本的”OGM”

This is a guest post by Mark A. Jensen, a DC area bioinformatics scientist. Thanks a lot Mark for writing the impressive Neo4j Perl library and taking the time to documenting it thoroughly.

You might call REST::Neo4p an “Object-Graph Mapping”. It uses the Neo4j REST API at its foundation to interact with Neo4j, but what makes REST::Neo4p “Perly” is the object oriented approach. Creating node, relationship, or index objects is equivalent to looking them up in the graph database and, for nodes and relationships, creating them if they are not present. Updating the objects by setting properties or relationships results in the same actions in the database, and returns errors when these actions are proscribed by Neo4j. At the same time, object creation attempts to be as lazy as possible, so that only the portion of the database you are working with is represented in memory.

The idea is that working with the database is accomplished by using Perl5 objects in a Perl person’s favorite way. Despite the modules’ “REST” namespace, the developer should almost never need to deal with the actual REST calls or the building of URLs herself. The design uses the amazingly complete and consistent self-describing information in the Neo4j REST API responses to keep URLs under the hood.

PS: OGM是相对于ORM而言的,提供了基于REST接口的底层封装。

转载地址:http://enxcl.baihongyu.com/

你可能感兴趣的文章
Oracle数据库常用监控语句
查看>>
git报错:src refspec master does not match any
查看>>
How to uninstall (remove) JAVA from OS X Lion
查看>>
hihoCoder1195 (高斯消元裸题)
查看>>
图片延迟加载并等比缩放,一个简单的JQuery插件
查看>>
用扩展开发一个PHP类
查看>>
使用Netty3或Netty4发布Http协议服务
查看>>
2011 聪明的质监员
查看>>
Redis之Set命令
查看>>
构建之法阅读笔记二。
查看>>
梦断代码阅读笔记一。
查看>>
【python】-- 多进程的基本语法 、进程间数据交互与共享、进程锁和进程池的使用...
查看>>
linux虚拟机使用VMware的NAT共享windows主机IP上网 [转]
查看>>
Rabbitmq编程
查看>>
C++虚函数
查看>>
Android记住密码后自动登录
查看>>
python 訪问webservice
查看>>
CSDN开源夏令营 百度数据可视化实践 ECharts(4)
查看>>
SVN 初试
查看>>
安装edX DevStack
查看>>