Home

图数据库创建一万个唯一索引会发生什么

Here’s the table of contents: 索引 图数据库报错 修改最大可打开文件数 索引 CREATE CONSTRAINT ON (n:LABEL1_20211231_1493252252_1493252293) ASSERT n.code IS UNIQUE; CREATE CONSTRAINT ON (n:LABEL2_20211231_1493252252_1493252293) ASSERT n.code IS UNIQUE; CREATE CONSTRAINT ON (n:LABEL3_20211231_1493252252_1493252293) ASSERT n.code IS UNIQUE; CREATE CONSTRAINT ON...

Read more

Cypher加载CSV文件

Here’s the table of contents: 加载CSV文件 加载CSV文件 读取为数据列表 //LOAD CSV FROM 'file:/artists.csv' AS line LOAD CSV FROM "http://data.neo4j.com/examples/person.csv" AS line RETURN * 读取为数据列表时指定CSV分隔符 LOAD CSV FROM "http://data.neo4j.com/examples/person.csv" AS line FIELDTERMINATOR '\t' RETURN * 读取为数据对象 //LOAD CSV WI...

Read more

Github.com-443解决方案

Here’s the table of contents: VPN代理问题 VPN代理问题 设置代理 git config --global http.proxy 127.0.0.1:7890 git config --global https.proxy 127.0.0.1:7890 解除代理 git config --global --unset http.proxy git config --global --unset https.proxy 配置查看 git config --global http.proxy #查看git的http代理配置 git config --global https.p...

Read more

超级节点模拟与查询优化

Here’s the table of contents: 一、模拟超级节点 二、优化超级节点 一、模拟超级节点 数据建模 (人物 {name})-[发表 {score}]->(文章 {number}) 数据生成 MERGE (per:人物 {name:'Superman'}) RETURN ID(per) AS id; //执行时间1~2秒 CALL apoc.periodic.iterate('WITH RANGE(0,1000000) AS list UNWIND list AS num RETURN num','CREATE (atc:文章 {number:num})', {parallel:true,batchSi...

Read more

Docker手动打包上传流程

Here’s the table of contents: 手动上传流程 手动上传流程 登录docker仓库(默认已登录) docker login 10.20.10.185 # 没有默认登录时使用用户名和密码 打标签 docker tag 本地镜像:版本 10.20.10.185/model/jupyter-jslearn:stable 上传 docker push 10.20.10.185/model/jupyter-jslearn:stabl...

Read more

ONgDB部署文件打包与使用

Here’s the table of contents: 单机部署文件打包 因果集群部署文件打包【构成集群的最小部署方式】 单机部署文件打包 sudo find ./ -maxdepth 1 -name "bin" -o -name "conf" -o -name "lib" -o -name "plugins" -o -name "logs" -o -name "data" -o -name "import" -o -name "run" -o -name "dic" |xargs sudo tar -zcvf dev-ongdb-v1.x-standalone.tgz --exclude=logs/* --exclude=data/* --exclude=impo...

Read more

CSDN自定义模板代码备份

Here’s the table of contents: HTML代码 HTML代码 <a href="https://crazyyanchao.github.io/blog/about.html" style="color:#CC0000;font-weight:bold;">个人简介</a> <a href="https://github.com/crazyyanchao/" style="color:#336633;font-weight:bold;">开源贡献</a> <a href="https://crazyyanchao.github.io/blog/" style="color:#330099;font-...

Read more