摘要:
问题:执行 db.auth(‘username’, ‘password’),monoDB 认证失败,出现 SASL SCRAM-SHA-1 authentication failed for nls-cloud on admin from client 172.19.0.1:14500 ; User 阅读全文
摘要:
先来看段代码: import java.util.ArrayList; import java.util.List; /** * -Xms30m -Xmx30m -Xmn10m -XX:+UseParallelGC * @author liuxiao * */ public class Test1 阅读全文
摘要:
俺觉得synchronized➕AtomicInteger可以解决大部分线程通信问题,或者Semaphore 阅读全文
摘要:
1、docker logs id |grep 'xxx' >> 1.log 阅读全文
摘要:
1、判定覆盖 2、对矩阵压缩存储的主要目的是节省存储空间 3、truncate(1.5455,2)结果是:小数点向右两位1.54 4、Thread t=new Thread(r)创建一个线程时,表达式:r instanceof Thread : false 吐了,面广且不懂 阅读全文
摘要:
(以fs的2886692为例) 1、top -p 2886692 2、ps -aux |grep 2886692 3、cat /proc/2886692/status 阅读全文
摘要:
1、ConcorrentHashMap只能保证自身读写线程安全,无法保证业务线程安全 (联想到redis的使用,也必须要考虑到这一点) 2、websocket无法并发发送消息,sendMessage时需要加锁或warp一层ConcurrentWebSocketSessionDecorator 阅读全文
摘要:
1、确定POM文件是否配置: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.1.7.RELEASE</versi 阅读全文