摘要:
zzh@ZZHPC:~$ docker run --name postgres16 -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=aaa -d postgres:alpine 8e36b7bdc47572723a416c319b83f
阅读全文
posted @ 2023-11-20 19:08
ZhangZhihuiAAA
阅读(57)
推荐(0)
摘要:
REPEATABLE READ (default) READ COMMITTED READ UNCOMMITTED SERIALIZABLE zzh@ZZHPC:~$ docker run --name mysql8 -p 3306:3306 -e MYSQL_ROOT_PASSWORD=aaa -
阅读全文
posted @ 2023-11-20 18:41
ZhangZhihuiAAA
阅读(37)
推荐(0)
posted @ 2023-11-20 08:50
ZhangZhihuiAAA
阅读(33)
推荐(0)
摘要:
If you want to run or update a task when certain files are updated, the make utility can come in handy. The make utility requires a file, Makefile (or
阅读全文
posted @ 2023-11-19 18:09
ZhangZhihuiAAA
阅读(38)
推荐(0)
摘要:
zzh@ZZHPC:~$ docker pull postgres:alpine zzh@ZZHPC:~$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE postgres alpine 642d75c6be0c 9 days ago 245MB
阅读全文
posted @ 2023-11-19 16:51
ZhangZhihuiAAA
阅读(16)
推荐(0)
摘要:
Adding certificate information to a server implementation is twofold: implement logic to load credentials and create a TransportCredentials(http://mng
阅读全文
posted @ 2023-11-19 15:32
ZhangZhihuiAAA
阅读(17)
推荐(0)
摘要:
zzh@ZZHPC:~$ openssl req --help Usage: req [options] General options: -help Display this summary -engine val Use engine, possibly a hardware device -k
阅读全文
posted @ 2023-11-19 15:26
ZhangZhihuiAAA
阅读(41)
推荐(0)
摘要:
The retry pattern works well for covering transient failures, but if we don’t know how long the problem will last, we may end up putting a high load o
阅读全文
posted @ 2023-11-19 13:05
ZhangZhihuiAAA
阅读(13)
推荐(0)
摘要:
Retry Pattern Transient faults occur when a momentary loss of service functionality self-corrects. The retry pattern in gRPC enables us to retry a fai
阅读全文
posted @ 2023-11-19 10:53
ZhangZhihuiAAA
阅读(35)
推荐(0)
摘要:
Timeout Pattern What is context.Context? The context in Go enables you to specify deadlines, cancellation signals, or key-value pairs available betwee
阅读全文
posted @ 2023-11-19 09:54
ZhangZhihuiAAA
阅读(20)
推荐(0)