题意 如题目所示 思路 遍历字符串建立一个哈希表来统计每个字符出现的次数,然后再从头遍历字符串进行查询即可 代码 class Solution { public: char firstUniqChar(string s) { if(s.empty()) { return ' '; } unorder ...
分类:
其他好文 时间:
2021-02-15 11:50:39
阅读次数:
0
一、概述 1.1、Kafka Streams Kafka Streams。Apache Kafka开源项目的一个组成部分。是一个功能强大,易于使用的库。用于在Kafka上构建高可分布式、拓展性,容错的应用程序。 1.2、Kafka Streams特点 功能强大 高扩展性,弹性,容错 轻量级 轻量级 ...
分类:
其他好文 时间:
2021-02-10 13:05:33
阅读次数:
0
构建条件方法 @Override public Query getQuery(ReportParam param){ //check MeenoAssert.hasLength(param.getUuid(),"uuid can not empty!"); MeenoAssert.notNull(p ...
分类:
其他好文 时间:
2021-02-08 12:27:48
阅读次数:
0
#零 修订记录 | 序号 | 修订内容 |修订时间 | | | | | | 1 | 新增 |2021/2/6| #一 摘要 前文linux 基于三台物理机安装ceph nautilus 介绍了 ceph 在centos 7.6 上的安装。 ceph nautilus 横向扩容 介绍了ceph 横向扩 ...
分类:
其他好文 时间:
2021-02-08 11:45:21
阅读次数:
0
NX二次开发-检查文件夹是否存在 1 bool CheckFolderExist(const string & strPath) 2 { 3 if (strPath.empty()) 4 { 5 return false; 6 } 7 8 WIN32_FIND_DATA wfd; 9 BOOL bV ...
分类:
其他好文 时间:
2021-02-05 10:36:27
阅读次数:
0
NX二次开发-创建目录 1 bool CreateDir(string path) 2 { 3 if (path.empty()) 4 { 5 return false; 6 } 7 8 CreateDirectory(multiByteToWideChar(path), NULL); 9 10 r ...
分类:
其他好文 时间:
2021-02-05 10:35:29
阅读次数:
0
https://www.cnblogs.com/chenjfblog/p/7593509.html https://bbs.csdn.net/topics/391814929?page=1 ...
分类:
其他好文 时间:
2021-02-04 12:26:16
阅读次数:
0
单机启动 1、获取Kafka 2、解压Kafka $ tar -xzf kafka_2.13-2.7.0.tgz $ cd kafka_2.13-2.7.0 3、启动zk(Kafka包中自带zk程序和配置文件) 配置ZK的日志路径 # Start the ZooKeeper service # No ...
分类:
其他好文 时间:
2021-02-04 12:16:31
阅读次数:
0
zookeeper.properties # the directory where the snapshot is stored. dataDir=/tmp/zookeeper # the port at which the clients will connect clientPort=2181 ...
分类:
其他好文 时间:
2021-02-04 12:14:03
阅读次数:
0
启动完kafka后,go run producer.go 程序之后出现 D:\tmp\kafka-logs\__consumer_offsets-48\00000000000000000000.test_log.log: 另一个程序正在使用此文件,进程无法访问。 解决办法,网上说,直接把tmp的这个 ...
分类:
编程语言 时间:
2021-02-03 10:47:28
阅读次数:
0