高并发
fengruoh
这个作者很懒,什么都没留下…
展开
-
ZooKeeper入门一
一、简介 1、apache Zookeeper是一个用于分布式的应用程序的高性能协调服务。提供一 种集中式的数据存储服务。 2、数据存在内存中,类似于文件系统的树形结构,高吞吐量和低延迟,集群高可 靠。 3、基于Zookeeper可以实现分布式统一配置中心、服务注册中心、分布式锁等功 能。 (数据结构) 二、安装ZooKeeper 1、jdk必须要1.5以上,配置环境变量 2、安装地址 3、...原创 2019-09-05 22:19:25 · 164 阅读 · 0 评论 -
ZooKeeper入门(基于Zookeeper实现分布式锁),有代码
方式一:节点不可重名+watch 缺点:惊群效应 (流程图) 这个功能是需要实现juc的Lock接口。 1、参数,构造器 private String localpath; private ZkClient client ; public ZkDistributeLock(String localpath) { if(localpath== ...原创 2019-09-09 09:26:08 · 185 阅读 · 0 评论