P25

  Taobao分布式文件系统TFS简析 文档

需要等所有dataserver写成功后才能返回,这很是影响性能。 3、用户接口。TFS没有提供POSIX接口,提供的API也与标准接口不一致。另外,TFS有自己的文件命名规则,如果用户使用自定义的文件

syskernel 2012-07-05   530   0

Linux性能及调优指南(翻译)之Linux进程管理 经验

图1-4 进程和线程 在现在的Linux实现中,线程支持UNIX的可移植操作系统接口(POSIX)标准库。在Linux操作系统中有几种可用的线程实现。以下是广泛使用的线程库: LinuxThreads

Jay_J 2016-08-30   30678   0
Linux  

使用 C++ 的 StringBuilder 提升 4350% 的性能 经验

endl; } 第二个则使用更精确的Posix函数clock_gettime(),并测试StringBuilder::Join()。 #ifdef __USE_POSIX199309 // Thanks to

aiyongay 2017-01-06   30053   0

使用 C++ 的 StringBuilder 提升 4350% 的性能 经验

endl; } 第二个则使用更精确的Posix函数clock_gettime(),并测试StringBuilder::Join()。 #ifdef __USE_POSIX199309 // Thanks

jopen 2013-09-11   16859   0

Android常用的工具类 经验

fileSize = 0; /* 线程数 */ private DownloadThread[] threads; /* 本地保存文件 */ private File saveFile; /* 缓存各线程下载的长度*/

jopen 2012-10-09   50891   0

python 多线程优先队列Queue 代码段

workQueue = Queue.Queue(10) threads = [] threadID = 1 # Create new threads for tName in threadList: thread

pythopen 2015-05-14   4285   0
Python  

C++11 多线程:数据保护 经验

the threads which will each do some counting vector threads; Incrementer counter; threads.pus

jopen 2012-07-04   22192   0

Wine v2.0-rc2 发布 资讯

Wine (“Wine Is Not an Emulator” 的首字母缩写)是一个能够在多种 POSIX-compliant 操作系统(诸如 Linux,Mac OSX 及 BSD 等)上运行 Windows

jopen 2016-12-21   7764   0
Wine   Linux   Mac OSX   BSD   Windows  

Wine v1.9.11 发布 资讯

Wine (“Wine Is Not an Emulator” 的首字母缩写)是一个能够在多种 POSIX-compliant 操作系统(诸如 Linux,Mac OSX 及 BSD 等)上运行 Windows

jopen 2016-05-27   10237   0
Wine   Linux   Mac OSX   BSD   Windows  

程序员的日常:时间戳和时区的故事 资讯

时间戳(Unix timestamp)。它也被称为Unix时间(Unix time)、POSIX时间(POSIX time),是一种时间表示方式,定义为从格林威治时间1970年01月01日00时00分

jopen 2016-01-18   5193   0
程序员   UNIX  

基于Redis与Node.js实现的全文搜索引擎 Reds 经验

独特的是,Node.js会假设你是在POSIX环境下运行它Linux 或 Mac OS X。如果你是在Windows下,那就需要安装MinGW以获得一个仿POSIX的环境。在Node中,Http是首要

fmms 2012-01-01   28816   0

Wine 1.7.50 发布,初步实现 Direct3D 11 资讯

Wine (“Wine Is Not an Emulator” 的首字母缩写)是一个能够在多种 POSIX-compliant 操作系统(诸如 Linux,Mac OSX 及 BSD 等)上运行 Windows

jopen 2015-08-22   12461   0
Wine  

wine 1.8.1 发布,bug 修复版本 资讯

Wine (“Wine Is Not an Emulator” 的首字母缩写)是一个能够在多种 POSIX-compliant 操作系统(诸如 Linux,Mac OSX 及 BSD 等)上运行 Windows

jopen 2016-02-03   6577   0

程序员的日常:时间戳和时区的故事 资讯

时间戳(Unix timestamp)。它也被称为Unix时间(Unix time)、POSIX时间(POSIX time),是一种时间表示方式,定义为从格林威治时间1970年01月01日00时00分

jopen 2016-01-18   59359   0
程序员   UNIX  

Routerhunter-2.0 - 测试在连接到互联网的设备和路由器的漏洞 经验

--dns2 8.8.4.4 Define malicious dns2 --threads 10 Set threads numbers -rip, --randomip Randomizing ips

jopen 2016-02-05   19966   0
P9

  FastDFS 配置优化 文档

内存越多。不建议配置得过大,以避免无谓的内存开销。 4. 工作线程数设置参数名: work_threads 缺省值:4 说明:为了避免CPU上下文切换的开销,以及不必要的资源消耗,不建议将本参数设置得

cellcomcn 2012-09-18   11584   0
P13

  openldap应用之帐号集中管理 文档

'posixAccount'         DESC 'Abstraction of an account with POSIX attributes'         SUP top AUXILIARY         MUST

l2121245 2017-01-17   1933   0

shell 分析java进程cpu使用率过高的shell脚本 代码段

consumed threads of java, and print the stack of these threads. # # @Usage # $ ./show-busy-java-threads.sh

frrj1139 2016-01-19   4438   0
Shell   Linux  

使用 Puma Web 服务器部署 Rails 应用 资讯

Y'] || 2) threads_count = Integer(ENV['MAX_THREADS'] || 5) threads threads_count, threads_count preload_app

n342 2015-04-28   14837   0
Rails  

Python多任务多线程任务管理类 代码段

self._max_thread_count = max_thread_count self._threads = [] self._name = name self._check_args = check_args

LueOsburn 2016-01-24   1283   0
Python  
1 2 3 4 5 6 7 8 9 10