完整的项目在 GitHub-mlb 配置类 package com.seliote.mlb.fs.config; import com.seliote.mlb.common.config.PropertiesInjector; import io.minio.BucketExistsArgs; im ...
分类:
编程语言 时间:
2021-06-02 17:42:43
阅读次数:
0
https://hyperledger-fabric.readthedocs.io/en/latest/channels.html Channels A Hyperledger Fabric channel is a private “subnet” of communication between ...
分类:
其他好文 时间:
2021-06-02 17:34:38
阅读次数:
0
直接贴代码 服务器端 package GroupChat; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.*; i ...
分类:
其他好文 时间:
2021-06-02 17:14:48
阅读次数:
0
liunx下redis下载编译安装 介绍 redis官网地址 https://redis.io/ redis下载地址 http://download.redis.io/releases/redis-5.0.5.tar.gz 可以本地下载然后filezila上传上去,或者liunx里面wget下载 解 ...
分类:
系统相关 时间:
2021-06-02 16:42:09
阅读次数:
0
1. jps 查看正在运行的JVM进程 2. jstat 监视虚拟机运行时状态信息,显示虚拟机进程中的类装载、内存、垃圾收集、JIT编译等数据 3. jmap 生成heap dump文件,除了这个命令还可以配置-XX:+HeapDumpOnOutOfMemoryError参数让虚拟机出现OOM时自动 ...
分类:
其他好文 时间:
2021-06-02 16:01:06
阅读次数:
0
yum -y install podman 参考地址 https://yeasy.gitbook.io/docker_practice/podman ...
分类:
系统相关 时间:
2021-06-02 15:51:44
阅读次数:
0
package cn.edu360 import java.io.{FileInputStream, FileOutputStream, ObjectInputStream, ObjectOutputStream} /** * Created by zx on 2017/6/25. */class ...
分类:
其他好文 时间:
2021-06-02 15:46:04
阅读次数:
0
https://hyperledger-fabric.readthedocs.io/en/latest/readwrite.html Read-Write set semantics This document discusses the details of the current impleme ...
分类:
其他好文 时间:
2021-06-02 15:28:52
阅读次数:
0
1. CPU 密集型(I/O bound) CPU密集型也叫计算密集型,指的是系统的硬盘、内存性能相对CPU要好很多,此时,系统运作大部分的状况是CPU Loading 100%,CPU要读/写I/O(硬盘/内存),I/O在很短的时间就可以完成,而CPU还有许多运算要处理,CPU Loading很高 ...
分类:
其他好文 时间:
2021-06-02 15:19:53
阅读次数:
0
最大连接数 show variables like '%max_connections%'; 最大连接数 对于并发编程了解过的人知道,这个151不是越大越好,一般来说设置为 最大连接数 = cpu X 2 会比较合适, 因为受 IO 影响,连接数越大,反而越会占用IO,所以设置过大也可能导致性能降低 ...
分类:
数据库 时间:
2021-06-02 15:17:51
阅读次数:
0