Select用法 Go里面提供了一个关键字select,通过select可以监听channel上的数据流动。 select的用法与switch语言非常类似,由select开始一个新的选择块,每个选择条件由case语句来描述。 与switch语句相比, select有比较多的限制,其中最大的一条限制就 ...
分类:
其他好文 时间:
2020-12-18 12:55:43
阅读次数:
3
import java.io.*; import java.util.*; import com.jcraft.jsch.Channel; import com.jcraft.jsch.ChannelSftp; import com.jcraft.jsch.ChannelSftp.LsEntry; ...
分类:
编程语言 时间:
2020-12-17 12:07:17
阅读次数:
1
authors: Mingbao Lin, Rongrong Ji, etc. comments: IJCAL2020 cite: [2001.08565v3] Channel Pruning via Automatic Structure Search (arxiv.org) code: http ...
分类:
其他好文 时间:
2020-12-16 12:34:48
阅读次数:
4
ES集群下线节点扩容,然后在上线 1、将节点从集群路由策略中排除 PUT _cluster/settings { "transient" : { "cluster.routing.allocation.exclude._name" : "node-1" } } 2、等待节点上分片全部被迁移 3、下线 ...
分类:
其他好文 时间:
2020-12-14 13:34:02
阅读次数:
4
STOPREPLICA|SLAVE语句1.STOP{REPLICA|SLAVE}[thread_types][channel_option]2.3.thread_types:4.[thread_type[,thread_type]...]5.6.thread_type:IO_THREAD|SQL_THREAD7.8.channel_option:9.FORCHANNELchannel此语句停止复制
分类:
数据库 时间:
2020-12-08 12:49:19
阅读次数:
10
STARTSLAVE|REPLICA语句1.START{SLAVE|REPLICA}[thread_types][until_option][connection_options][channel_option]2.3.thread_types:4.[thread_type[,thread_type]...]5.6.thread_type:7.IO_THREAD|SQL_THREAD8.9.unt
分类:
数据库 时间:
2020-12-08 12:48:22
阅读次数:
6
RESETSLAVE|REPLICA语句1.RESET{SLAVE|REPLICA}[ALL][channel_option]2.3.channel_option:4.FORCHANNELchannel5.该语句使副本忘记其在源的二进制日志中的位置。从MySQL8.0.22开始,RESETSLAVE被弃用,应该使用它的别名RESETREPLICA。在MySQL8.0.22之前的版本中使用RESET
分类:
数据库 时间:
2020-12-08 12:47:38
阅读次数:
10
RocketMQDLedger的存储实现思路与RocketMQ的存储实现思路相似,本文就不再从源码角度详细剖析其实现,只是点出其实现关键点。我们不妨简单回顾一下CommitLog文件、ConsumeQueue文件设计思想。其文件组成形式如下:正如上图所示,多个commitlog文件组成一个逻辑上的连续文件,使用MappedFileQueue表示,单个commitlog文件使用MappedFile表
分类:
其他好文 时间:
2020-12-07 12:44:28
阅读次数:
10
##1、DIR 定义 struct __dirstream { void *__fd; char *__data; int __entry_data; char *__ptr; int __entry_ptr; size_t __allocation; size_t __size; __libc_l ...
分类:
系统相关 时间:
2020-11-26 14:36:10
阅读次数:
7
Django支付宝(沙箱)后端接口 点击查看初始化沙箱配置(https://blog.csdn.net/weixin_45954124/article/details/109583431) 创建app 仅供参考 你需要自己创建相应的表(model) app\model # Create your m ...
分类:
其他好文 时间:
2020-11-24 13:02:37
阅读次数:
18