Skip to content

四号程序员

Keep It Simple and Stupid

  • Home
  • 读过的书
  • 从0到1实战微服务架构(第2版)

Spring Boot + WebSocket example without STOMP and SockJs

Leave a reply

https://www.devglan.com/spring-boot/spring-websocket-integration-example-without-stomp

《Websocket推送中心(三)-单机100W连接(C1000K)达成》[......]

继续阅读

This entry was posted in Java on 2021-02-22 by coder4.

架构图参考

Leave a reply

架构图参考

架构图参考架构图参考

关于 更多架构 架构图的总结,可以参考 软件架构分层模型和架构思考 写的很好[......]

继续阅读

This entry was posted in 计算机技术 and tagged 架构图 on 2021-02-20 by coder4.

jq命令10分钟速成

Leave a reply

示例json:
{
"status": "ok",
"data": [{
"id": 1,
"name": "zhangsan"
},
{
"id": 2,
"name": "wangwu"
}
]
}
1 直接格式化打印
at ./test.json | jq .
{
"status": "ok",
"data": [
{
"id": 1,[......]

继续阅读

This entry was posted in Linux and tagged jq, JSON on 2021-02-11 by coder4.

Go解析命令行参数(简单版本)

Leave a reply

// Check Args
if len(os.Args) != 2 {
fmt.Println("Usage xxx <arg1> <arg2>")
return
}

arg1 := os.Args[1]
arg1 := os.Args[2]
 [......]

继续阅读

This entry was posted in Go and tagged go, 参数, 命令行, 命令行参数 on 2021-02-09 by coder4.

使用goproxy解决go get速度慢的问题

Leave a reply

可以使用go proxy:https://goproxy.io/zh/
export GO111MODULE=on
export GOPROXY=https://goproxy.io,direct
然后执行go get
go mod init github.com/my/repo

go get github.com/go-redis/redis/v8

 [......]

继续阅读

This entry was posted in Go and tagged get, go, proxy, 代理 on 2021-02-09 by coder4.

Post navigation

← Older posts
Newer posts →

Categories

  • Android
  • C && C++
  • Go
  • iOS
  • Java
  • Linux
  • Mac
  • NLP
  • opencv
  • Perl
  • PHP
  • Python
  • RPC
  • Ruby
  • Visual C++ && C#
  • Windows
  • Wordpress
  • 前端技术
  • 大数据技术
  • 心情随笔
  • 搜索技术
  • 数据库技术
  • 未分类
  • 机器学习
  • 笔面题
  • 算法&数据结构
  • 网络&网络模拟
  • 计算机技术
  • 设计

Tags

  • Android
  • C
  • CentOS
  • c语言
  • Debian
  • docker
  • go
  • gtk
  • Hadoop
  • Hive
  • ios
  • Java && J2EE
  • Java && J2EE
  • Java核心技术
  • KVM
  • Linux
  • MySQL
  • nginx
  • Oracle
  • PHP
  • Python
  • Python Essential Reference
  • shell
  • socket
  • Ubuntu
  • VC
  • windows
  • 严蔚敏
  • 中文
  • 乱码
  • 卷2
  • 字符串
  • 安装
  • 实现
  • 排序
  • 教程
  • 数据结构
  • 核心技术
  • 算法
  • 算法技术手册
  • 编译
  • 读书笔记
  • 递归
  • 配置
  • 重读
Proudly powered by WordPress