Java 7 Concurrency Cookbook 中文名:Java 7 并发编程指南,中文版见http://ifeve.com/java-7-concurrency-cookbook/,这本书是学习并发的绝好书籍,我在网上找了好久才找到源代码,所以收点积分
2020-03-04 03:11:36 1.12MB Concurrency 并发
1
The advent of multicore processors has renewed interest in the idea of incorporating transactions into the programming model used to write parallel programs.This approach, known as transactional memory, offers an alternative, and hopefully better, way to coordinate concurrent threads. The ACI (atomicity, consistency, isolation) properties of transactions provide a foundation to ensure that con- current reads and writes of shared data do not produce inconsistent or incorrect results. At a higher level, a computation wrapped in a transaction executes atomically - either it completes successfully and commits its result in its entirety or it aborts. In addition, isolation ensures the transaction pro- duces the same result as if no other transactions were executing concurrently. Although transactions are not a parallel programming panacea, they shift much of the burden of synchronizing and co- ordinating parallel computations from a programmer to a compiler, to a language runtime system, or to hardware. The challenge for the system implementers is to build an efficient transactional memory infrastructure. This book presents an overview of the state of the art in the design and implementation of transactional memory systems, as of early spring 2010.
2020-03-04 03:02:45 1.81MB TM 并发 同步 内存一致性
1
Java 并发编程实战pdf + 随书源码 (书高清版,带超详细书签目录) 本资源转载自网络,供学习研究之用,如用于商业用途,请购买正版,如有侵权,请联系我或CSDN删除。
2020-03-04 03:01:13 8.84MB Java
1
一、多线程的基本知识 1.1进程与线程的介绍   程序运行时在内存中分配自己独立的运行空间,就是进程   线程:它是位于进程中,负责当前进程中的某个具备独立运行资格的空间。   进程是负责整个程序的运行,而线程是程序中具体的某个独立功能的运行。一个进程中至少应该有一个线程。 1.2多线程的介绍   在多任务,多用户的系统中。每天都会产生许多进程。   多线程:在一个进程中,我们同时开启多个线程,让多个线程同时去完成某些任务(功能)。   (比如后台服务系统,就可以用多个线程同时响应多个客户的请求)   多线程的目的:提高程序的运行效率。   多线程的运行原理:cpu在线程中做时间片的切换(多线程可以提高程序的运行效率,但不能无限制的开线程) 1.3实现线程的两种方式   1、继承Thread的方式   2、声明实现 Runnable 接口的方式 1.4 JAVA同步 synchronized关键字 ......
2020-02-07 03:09:51 67B java 高并发 多线程
1
sip 并发测试工具,包含注册机,请下载的各位同学先关闭杀毒软件,不然注册码会被秒杀。
2020-01-18 03:07:24 6.35MB winsip sip 并发工具 asterisk
1
java7并发编程实战手册----源代码
2020-01-15 03:00:59 1.12MB java7并发
1
非扫描版!!!!真pdf!!
2020-01-14 03:10:49 8.81MB java 并发编程
1
自己准备实现一个web服务器学习IOCP而封装的一个框架,能适应高并发(默认我设置是64个)连入及多client同时在线传输数据(最大测试到30000).包括TCP与UDP两种协议的IOCP封装实现。比较好的解决了掉线,死机,超时等socket关闭问题及WAIT_TIME问题。同时用较好方式实现了AcceptContext,ReceiveContext,Sendcontext的管理(自己写了个static类),重用各种context,避免频繁的new与delete操作.系统容量会随接入用户自动提升.框架清楚,接口已经做好,写web服务器是很容易的事情了。
1
C 语言实现的http文件上传下载服务 系统平台:windows 开发工具:vs2010 开发语言:C 程序为单线程,使用I/O多路复用实现并发 抽取libevent的最最最基础框架,自己封装event 使用BSD tree.h的红黑树
1
对Go语言并发编程探讨深入,讲解细腻,同时这本书也非常适合作为Go语言的入门教材,即便是对Go语言了解不深的人也能从中获益。书中标例非常有价值,它们贴切地展现了用Go语言进行编程的方法和技巧。
2020-01-03 11:43:07 2.32MB Go语言 并发 并发编程
1