jaegeropentracing的Java-client完整分布式追踪链,在分布式系统中透传trace信息 下面是代码: client端代码如下: public static void main(String[] args) throws InterruptedException { Config ...
分类:
编程语言 时间:
2020-03-14 18:19:42
阅读次数:
63
用Runnable接口实现多线程 public class ThreadDemo { public static void main(String[] args) throws InterruptedException { Racer racer = new Racer(); new Thread( ...
分类:
编程语言 时间:
2020-03-06 17:24:08
阅读次数:
70
使用分析 四种读写情况:读读 读写 写读 写写, 接下来分四种情况看最终结果 情况一:读读使用 public static void main(String[] args) throws InterruptedException { ReentrantReadWriteLock readWriteL ...
分类:
其他好文 时间:
2020-02-18 13:23:22
阅读次数:
71
一、源码 1、Lock接口 void lock(); 锁 void lockInterruptibly() throws InterruptedException; 在等待锁时被中断会抛异常 boolean tryLock(); 判断锁是否可用,可用就获取 boolean tryLock(long ...
分类:
其他好文 时间:
2020-02-18 10:09:04
阅读次数:
56
class Metaspace extends ClassLoader { public static List<Class<?>> createClasses() throws InterruptedException { // 类持有 List<Class<?>> classes = new A ...
分类:
Web程序 时间:
2019-12-30 19:16:00
阅读次数:
149
1.通过代码验证集群的配置文件的优先级 HDFS文件上传 1.编写源代码 @Test public void testCopyFromLocalFile() throws IOException, InterruptedException, URISyntaxException { // 1 获取文 ...
分类:
其他好文 时间:
2019-12-23 20:44:08
阅读次数:
90
1、删除index1中,title包含工厂的文档 @Test public void testQueryDelete() throws IOException, InterruptedException, ExecutionException { //指定集群 Settings settings = ...
分类:
编程语言 时间:
2019-12-23 00:47:44
阅读次数:
242
1、查询index1中content字段包含工厂的文档 @Test public void testMatch() throws IOException, InterruptedException, ExecutionException { //指定集群 Settings settings = Se ...
分类:
编程语言 时间:
2019-12-23 00:37:12
阅读次数:
88
1、查询索引是index1,类型是blog,id是8、10和索引是lib3,类型是user,id是1、2、3的文档 @Test public void testMultiGet() throws IOException, InterruptedException, ExecutionExceptio ...
分类:
编程语言 时间:
2019-12-23 00:27:49
阅读次数:
131
Object c = Stream.of( CompletableFuture.supplyAsync(() -> { Map m = new HashMap(); try { Thread.sleep(2000); } catch (InterruptedException e) { e.prin ...
分类:
其他好文 时间:
2019-12-22 18:28:58
阅读次数:
88