摘要:
static final int DEFAULT_INITIAL_CAPACITY = 16; 默认容量 static final int MAXIMUM_CAPACITY = 1073741824; 最大容量 static final float DEFAULT_LOAD_FACTOR = 0.7 阅读全文
摘要:
常见问题 为什么服务下线了,Eureka Server 接口返回的信息还会存在。 为什么服务上线了,Eureka Client 不能及时获取到。 为什么有时候会出现如下提示: EMERGENCY! EUREKA MAY BE INCORRECTLY CLAIMING INSTANCES ARE UP 阅读全文
摘要:
左边是mongodb查询语句,右边是sql语句。对照着用,挺方便。 db.users.find() select * from users db.users.find({"age" : 27}) select * from users where age = 27 db.users.find({"u 阅读全文