上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: 安装 go https://go.dev/doc/install 安装以后命令行执行 go version 然后随便创建一个文件, 比如 hello.go package main import "fmt" func main() { fmt.Println("hello world!") } 这就 阅读全文
posted @ 2022-09-18 16:40 YanyuWu 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 什么是 Webhook? 参考文章: https://zhuanlan.zhihu.com/p/193996563 ,https://studygolang.com/articles/15056 Webhook 是一个 API 概念, 是微服务 API 的使用范式之一, 也被成为反向 API. 即前 阅读全文
posted @ 2022-09-14 22:11 YanyuWu 阅读(122) 评论(0) 推荐(0) 编辑
摘要: graphql schema 在本页,你将学到关于 GraphQL 类型系统中所有你需要了解的知识,以及类型系统如何描述可以查询的数据。 类型系统(Type System) 因为一个 GraphQL 查询的结构和结果非常相似,因此即便不知道服务器的情况,你也能预测查询会返回什么结果。 但是一个关于我 阅读全文
posted @ 2022-01-23 11:56 YanyuWu 阅读(334) 评论(0) 推荐(0) 编辑
摘要: graphql 查询方式笔记 普通查询一个字段 例1 { hero { name } } 返回值 { "data": { "hero": { "name": "R2-D2" } } } 例2 { hero { name # 查询可以有备注! friends { name } } } 返回值 { "d 阅读全文
posted @ 2022-01-16 17:05 YanyuWu 阅读(228) 评论(0) 推荐(0) 编辑
摘要: Graphql 学习笔记系列 Graphql 支持的语法格式笔记 阅读全文
posted @ 2022-01-16 17:04 YanyuWu 阅读(36) 评论(0) 推荐(0) 编辑
摘要: Components of Cassandra - Partitioners A partitioner determines how data is distributed across the nodes in the cluster. Basically, a partitioner is a 阅读全文
posted @ 2021-03-21 21:36 YanyuWu 阅读(40) 评论(0) 推荐(0) 编辑
摘要: Data replication Cassandra stores replicas on multiple nodes to ensure reliability and fault tolerance. A replication strategy determines the nodes wh 阅读全文
posted @ 2021-03-21 21:35 YanyuWu 阅读(54) 评论(0) 推荐(0) 编辑
摘要: Cassandra 的目标 To handle big data workloads across multiple nodes without any single point of failure. Cassandra has peer-to-peer distributed system ac 阅读全文
posted @ 2021-03-21 11:21 YanyuWu 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 本篇收录于 Cassandra 学习笔记系列 win 10 运行 cqlsh 报错 File "xxxx\cqlsh.py" line 146 expcet importError e 错误现象 解决方案 尝试方案1: sys.exit("\nPython Cassandra driver not 阅读全文
posted @ 2021-03-21 10:27 YanyuWu 阅读(185) 评论(1) 推荐(0) 编辑
摘要: 本篇收录于 Cassandra 学习笔记系列 win10 运行 Cassandra 报错 sigar-amd64-winnt.dll+0x14ed4 错误现象 解决方案 将 lib 文件夹下面的 sigar-bin 改名为 sigar-bin_tmp 再次运行即可。 阅读全文
posted @ 2021-03-21 10:21 YanyuWu 阅读(590) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页