
数据库 -- ArangoDB
文章平均质量分 86
yinni11
这个作者很懒,什么都没留下…
展开
-
ArangoDB自学
官方网站是:https://docs.arangodb.com/3.3/AQL/Tutorial/CRUD.html1.建立实体,点击Collections ---->add Collection ,填写Name,Type设置为Document2.在实体中都有唯一的键值"_key",3."_id" 是一个计算属性,是由实体名称+“/”+_key值组成,这个唯一确定一个实体在一个数...原创 2018-11-13 18:36:30 · 506 阅读 · 1 评论 -
AQL语句和SQL语句对比。快速写出AQL语句
AQL语句和SQL语句对比,快速写出AQL语句地址https://www.arangodb.com/why-arangodb/sql-aql-comparison/原创 2019-05-07 17:58:59 · 1323 阅读 · 0 评论 -
Arango中图查询的语句的理解
FOR vertex[, edge[, path]]IN [min[..max]]OUTBOUND|INBOUND|ANY startVertexedgeCollection[, more…]ExplanationFOR 有三个参数‣ vertex (object): 遍历中的当前顶点‣ edge (object, optional): 遍历中的当前边‣ path (objec...转载 2019-05-08 10:29:13 · 972 阅读 · 0 评论 -
ArangoDB自学 --- 数据类型(Data types)
Arango有五种基本数据类型:Data type Description null An empty value, also: the absence of a value boolean Boolean truth value with possible valuesfalseandtrue number Signed (real) number...原创 2019-03-21 11:32:18 · 712 阅读 · 0 评论 -
ArangoDB自学 --- 类型检查和类型转换函数
官网地址:https://docs.arangodb.com/3.4/AQL/Functions/TypeCast.html#type-check-and-cast-functions原创 2019-03-20 11:25:09 · 367 阅读 · 0 评论 -
ArangoDB 图数据库笔记
ArangoDB 通过两个Document的Collection生成关系for m in meridiansfor p in acupointsfilter p.Meridian == m.DisplayNameinsert {_from: p._id, _to:m._id, property:”12”} in Relations将SQL数据库中导出的CSV文件导入到Arang...转载 2018-12-11 15:33:34 · 942 阅读 · 0 评论 -
ArangoDB自学 --- Object 或者 Document函数
原文地址:https://docs.arangodb.com/3.3/AQL/Functions/Document.htmlIS_SAME_COLLECTION()IS_SAME_COLLECTION(collectionName, documentHandle) → boolcollectionName(string): 集合的名字 documentHandle(string|...原创 2019-03-06 14:56:01 · 487 阅读 · 0 评论 -
ArangoDB自学 --- 字符串函数
字符串函数官网地址:https://docs.arangodb.com/3.3/AQL/Functions/String.htmlSUBSTRING()SUBSTRING(value, offset, length) → substring返回子字符串的值。value(string): a string offset(number): start atoffset, off...原创 2019-03-06 11:02:13 · 755 阅读 · 0 评论 -
ArangoDB自学 --- 数组函数 和数组的高级操作
数据函数1.APPEND()语法:APPEND(anyArray, values, unique) → newArrayAdd all elements of an array to another array. All values are added at the end of the array (right side).添加一个数组的所有元素到另外一个数组,将所有数据的元素...转载 2019-03-05 21:30:17 · 1258 阅读 · 0 评论 -
ArangoDB、Neo4j、OrientDB单机性能比较
系统信息图数据库版本信息图数据库 版本 备注 Neo4J 3.2 OrientDB 2.2.x ArangoDB、 3.1.19 有密钥失效问题,导致无法下载成功server端 Titan 1.0.0 需要集群,暂不分析 OS&库信息OS:Ubuntu 16.04 虚拟机VM12 pyt...转载 2019-01-30 19:38:32 · 793 阅读 · 0 评论 -
复杂AQL语句收集
FOR document in complexCollection LET alteredList = ( FOR element IN document.subList LET newItem = (! element.filterByMe ? element : MERGE(el...转载 2019-07-03 17:32:14 · 302 阅读 · 0 评论