
Neo4j
ylzhjlinux
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Neo4j: Cypher Query Language
Referencehttp://neo4j.com/docs/stable/cypher-query-lang.htmlhttp://neo4j.com/docs/2.1/cypher-refcard/http://neo4j.com/developer/http://gist.neo4j.org/...原创 2015-03-05 15:45:59 · 199 阅读 · 0 评论 -
Neo4j: Remote Restful API (java)
#git clone https://github.com/neo4j-contrib/java-rest-binding.git#git tag -l#git checkout neo4j-rest-graphdb-2.0.1#mvn clean install In mvn project's pom.xmladd<dependency> <...原创 2015-05-25 14:29:01 · 500 阅读 · 0 评论 -
Neo4j: fulltext search
Model @Indexed(indexType = IndexType.FULLTEXT, indexName = "TaskTile") private String title; Repository @Query("START n=node:TaskTile({0}) return n") Iterable<Task> fin...原创 2015-04-08 15:03:53 · 379 阅读 · 0 评论 -
Neo4j: custom parse string to POJO with jackson json
In my project, I provide neo4j extentions to clients which send json string to extention while jackson auto parse the json string to my POJO Model. Howerver, I want to simply the json string sen...原创 2015-04-02 16:23:13 · 152 阅读 · 0 评论 -
Neo4j: Index date type field
I want to search some nodes by date and time. In model, @Indexed private int startDate; @Indexed private int startTime; @Indexed private int endDate; @Indexed ...原创 2015-04-01 14:45:38 · 177 阅读 · 0 评论 -
Neo4j: Geo Spatial Query
I follow the spring data neo4j reference guide to import GeoSpatial function in my project likes <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-sp...原创 2015-04-01 11:30:49 · 885 阅读 · 0 评论 -
Neo4j: Streaming JSON responses
To lift server performance, when we query some data and result is hug, in which case, large memory will be used to produce the result json string. One solution is to use streaming JSON responses...原创 2015-03-31 16:33:55 · 244 阅读 · 0 评论 -
Neo4j: Index and Lables with SDN
In model, in order to index some property, you should anotate it with @Index. SDN now adopt schema-based index policy, which means the Entity class name will be used as lable. @NodeEntity@X...原创 2015-03-31 15:58:00 · 198 阅读 · 0 评论 -
Neo4j: post Json array object to extention
When I want to post a json array to extention, such as @Path("/addUsers") @POST @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) public Response addUsers(ArrayL...原创 2015-03-30 19:44:03 · 301 阅读 · 0 评论 -
Neo4j: Get Json Parameters in Extentions with Spring Data Neo4j
I want to write a extention to provide REST API for client to add a new user to Neo4j database, which I also use Spring Data Neo4j to OGM. Client just sends a josn post to the extention, and just g...原创 2015-03-30 15:57:37 · 439 阅读 · 0 评论 -
Neo4j: mvn project and compile
I build a mvn project in eclipse to add some neo4j server plugins and unmanaged extentions. When I runmvn clean installthe result jar package just has the classes in my own project not include ...原创 2015-03-25 21:40:11 · 192 阅读 · 0 评论 -
Neo4j: extentions with Spring Data for Neo4j
https://inserpio.wordpress.com/2014/04/30/extending-the-neo4j-server-with-spring-data-neo4j/原创 2015-03-25 17:29:02 · 118 阅读 · 0 评论 -
Neo4j: Spring Data Neo4j
http://projects.spring.io/spring-data-neo4j原创 2015-03-24 13:53:07 · 187 阅读 · 0 评论 -
Neo4j: migrating-from-mongodb-to-neo4j
Preferenceshttp://www.slideshare.net/seenickcode/migrating-from-mongodb-to-neo4j-lessons-learned原创 2015-03-12 10:40:31 · 351 阅读 · 0 评论 -
Neo4j: native java api
http://www.tutorialspoint.com/neo4j/neo4j_native_java_api_example.htm原创 2015-03-12 10:37:07 · 293 阅读 · 0 评论 -
Neo4j: Create multiple relationships between the same two nodes
In my case, I want to build a addreebook in neo4j, which a person has mutiply cellphones and maybe some cellphones have the same concacter with same phone number but different nicknames. such asus...原创 2015-06-03 14:40:54 · 231 阅读 · 0 评论