码迷,mamicode.com
首页 >  
搜索关键字:multi-thread    ( 31个结果
SQLite busy handler
SQLite doesn't support high concurrency. In case of a lot of concurrent access from multi-process or multi-thread, calling a SQLite r/w function is pr ...
分类:数据库   时间:2017-07-27 23:35:54    阅读次数:545
Concurrent control in SQLite
Multi-process, multi-thread, and locking in SQLite ...
分类:数据库   时间:2017-07-27 23:34:17    阅读次数:340
一个队列类的实现(比delphi自带的速度快70倍)(线程安全版本)
unit sfContnrs; interface {$DEFINE MULTI_THREAD_QUEUE} //线程安全版本,如果不需要线程安全,请注释掉此行代码 {$IFDEF MULTI_THREAD_QUEUE}uses Windows;{$ENDIF} type TsfQueue=clas ...
分类:编程语言   时间:2017-07-10 20:43:44    阅读次数:546
<Java><Multi-thread><Lock interface>
Overview 介绍java的lock interface. Motivation java拥有像synchronized这样的内置锁,那为什么还需要lock这样的外置锁呢? 首先,性能不是选择synchronized或lock的原因,因为jdk6中synchronized的性能已经和lock相差 ...
分类:编程语言   时间:2017-06-10 13:54:15    阅读次数:124
<Java><Multi-thread>
Overview notify() VS notifyAll() From a basic example 一个最经典的生产者消费者模型: public synchronized void put(String value) throws InterruptedException{ while (b ...
分类:编程语言   时间:2017-06-10 12:25:51    阅读次数:224
Shell多线程编程的实例
#!/bin/bash # a_sub(){ sleep5 } Multi_Thread(){ THREAD=5#此处定义线程数 TMP_FIFO="/tmp/$.fifo" /usr/bin/mkfifo$TMP_FIFO#新建一个fifo类型的文件 exec6<>$TMP_FIFO /bin/rm-f$TMP_FIFO#将fd6指向fifo类型 for((i=0;i<$THREAD;i++));do /bin/echo done>&..
分类:编程语言   时间:2016-11-24 22:08:50    阅读次数:155
sqlite与多线程
数据库支持三种线程模式Single-thread. In this mode, all mutexes are disabled and SQLite is unsafe to use in more than a single thread at once.Multi-thread. In thi... ...
分类:数据库   时间:2016-09-17 23:41:52    阅读次数:193
Python multi-thread 多线程 print 如何避免print的结果混乱
multithread如何写 这是我第一次写multithread,所以就是照着例子学,下面是我用来学的例子 来自于”Automate the boring stuff with Python”的15.6 import threading, time print "Start of the prog ...
分类:编程语言   时间:2016-09-03 06:14:33    阅读次数:232
Multi-Thread----Condition Variables
等待条件有两种方式:无条件等待pthread_cond_wait()和计时等待pthread_cond_timedwait() 激发条件有两种形式:pthread_cond_signal()激活一个等待该条件的线程,存在多个等待线程时按入队顺序激活其中一个;而pthread_cond_broadca ...
分类:其他好文   时间:2016-04-18 20:38:47    阅读次数:134
atitit.线程死锁 卡住无反应 的原因in cmd调用的解决方案  v3 q39
atitit.线程死锁 卡住无反应 的原因in cmd调用的解决方案  v3 q39   1. 问题::线程死锁  卡住无反应1 1.1. 分类:: cmd调用,  net io  , file  io 调用, multi thread调用same var的时候儿..1 1.2. 原因readLin
分类:编程语言   时间:2016-03-14 01:42:15    阅读次数:236
31条   上一页 1 2 3 4 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!