码迷,mamicode.com
首页 >  
搜索关键字:concurrency    ( 600个结果
浅入了解GCD 并发 并行 同步 异步 多线程
什么是 GCD?!GCD就是一个函数库(废话)用来压榨系统的资源,解决多线程处理中一些问题的库(知道这个就够了,很多电影角色都是因为知道太多死得很惨!!!!!)1.并发与并行Concurrency vs Parallelism单核设备:先运行一个线程,执行一个上下文切换。这通常切换很快以致给我们有并...
分类:编程语言   时间:2014-11-02 13:48:37    阅读次数:245
Choose Concurrency-Friendly Data Structures
What is a high-performance data structure? To answer that question, we're used to applying normal considerations like Big-Oh complexity, and memory ov...
分类:其他好文   时间:2014-10-31 20:32:41    阅读次数:153
同步并发操作之等待一个事件或条件
在看《Cplusplus Concurrency in Action Practical Multithreading》。记录一下学习过程,这是第四章,关于条件变量的使用,后面有一个线程安全的队列。...
分类:其他好文   时间:2014-10-31 15:39:54    阅读次数:229
读书笔记:事务信息系统(上)
花好了很多时间读了事务信息系统:并发控制与恢复的理论、算法与实践英文名叫Transactional Information Systems: Theory, Algorithms, and the Practice of Concurrency Control这本书在国内的翻译版已经绝版了,似乎没出...
分类:其他好文   时间:2014-10-31 15:20:26    阅读次数:226
Google Guava之--cache
一、简介 Google Guava包含了Google的Java项目许多依赖的库,如:集合 [collections] 、缓存 [caching] 、原生类型支持 [primitives support] 、并发库 [concurrency libraries] 、通用注解 [common ann.....
分类:系统相关   时间:2014-10-30 16:58:03    阅读次数:380
A Tour of Go Concurrency
The next section covers Go's concurrency primitives.A Tour of GoGoroutinesAgoroutineis a lightweight thread managed by the Go runtime.go f(x, y, z)sta...
分类:其他好文   时间:2014-10-29 01:44:37    阅读次数:108
使用Apache worker MPM 来提高passenger 性能
看到了http://blog.phusion.nl/2013/03/12/tuning-phusion-passengers-concurrency-settings/的推荐,打算具体测试一下使用workerMPM对于passenger的性能提升。实验设定:实验对象:自己用Rails写的webservice实验工具:自己用scala写的基于http://gatling.io/的性能测试代码两个..
分类:Web程序   时间:2014-10-28 10:31:34    阅读次数:262
[NHibernate]并发控制
目录写在前面文档与系列文章并发控制乐观并发控制(Optimistic Concurrency)一个例子悲观并发控制(Pessimistic Concurrency)总结写在前面上篇文章介绍了nhibernate中的事务,在增删改查中使用的必要性。本篇文章将介绍nhibernate中的并发控制。对多人...
分类:Web程序   时间:2014-10-26 12:58:49    阅读次数:520
C++ Singleton + MultiThread
#include #include using namespace std; template class Singleton { public: static T *instance() { if (object == NULL) { mtx.lock(); if (object == NULL) object = new T; mtx.unlock(); }...
分类:编程语言   时间:2014-10-18 00:45:37    阅读次数:226
数据共享之其他可供选择的手段
在看《Cplusplus Concurrency in Action Practical Multithreading》。记录一下学习过程,这是第三章最后,关于使用锁的部分。...
分类:其他好文   时间:2014-10-17 22:00:54    阅读次数:196
600条   上一页 1 ... 52 53 54 55 56 ... 60 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!