P6

  Mule技术架构 文档

lifecycle-adapter factory、A component resolver、A pool factory、An exception strategy。 2. Entry Point R

孤酷伶仃 2011-04-06   5687   0

使用Spring + Jedis集成Redis 经验

                 ${redis.pool.maxActive}                  

jopen 2015-10-25   39311   0
P8

  nginx处理流程 文档

//创建内存池         c->pool = ngx_create_pool(ls->pool_size, ev->log);         if (c->pool == NULL) {            

ebayboy 2011-10-30   610   0
P66

  oracle数据库性能优化实务第27讲-解读awr报告3 文档

Cache: 24,432M 24,432M Std Block Size: 8K Shared Pool Size: 4,096M 4,096M Log Buffer: 14,268K 8. 分析SGA

adt126 2014-01-17   1391   0
P65

  oracle数据库性能优化实务第26讲-解读awr报告2 文档

Cache: 24,432M 24,432M Std Block Size: 8K Shared Pool Size: 4,096M 4,096M Log Buffer: 14,268K 8. 分析SGA

adt126 2014-01-17   1423   0
P6

  spring线程案例 文档

ThreadPoolTaskExecutor pool = new ThreadPoolTaskExecutor();   14 + pool.setCorePoolSize(5);   15 + pool.setMaxPoolSize(10);

sunzm00000 2014-11-14   5267   0

Hadoop 2.x HDFS新特性 经验

块池( Block Pool) 块池是属于单个命名空间的一组块。 每一个datanode为所有的block pool存储块。 Datanode是一个物理概念,而block pool是一个重新将block划分的逻辑概念。

jopen 2015-01-13   19497   0

网络与服务器编程框架库,acl_3.0.19 版本发布 资讯

de, etc parse lib thread/process pool mysql/sqlite connection pool event(select, poll, iocp, epoll, kqueue

jopen 2014-06-23   18364   0
acl  

Python多线程 简明例子 经验

print("Main Thread Start At: ", dstart) #init thread_pool thread_pool = [] #init mutex g_mutex = threading.Lock()

jopen 2015-01-14   31035   0
P74

  Obj-C开发指南 文档

内存管理 Retain and Release(保留与释放) Dealloc Autorelease Pool Foundation Framework Classes NSArray NSDictionary

悠悠我心 2012-04-27   459   0
P19

  BEA WebLogic平台下J2EE调优攻略 文档

1 通用代码调优 1.1.2 减小没有必要的操作 1.1.3 使用合适的类型 1.1.4 尽量使用pool,buffer和cache 1.2 JDBC代码调优 1.2.1 严格资源使用 1.2.2 实用技巧

henujun 2011-09-05   470   0
P23

  网站架构之缓存应用 文档

HostUri );                 //Create 250 keys for this pool, store each key in the hostDictionary, as well 

jelly0812 2011-12-27   3907   0
P31

  iOS 分享 文档

argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; MemFoo* myMem=[[MemFoo

lihang_net 2012-03-31   12785   0

MySQL 系统调优及问题查找 经验

两个存储引擎在不同的场景下差异比较大,主要原因也正是因为上面这四个主要区别所造成的。 Innodb_buffer_pool_size 假设是一台单独给 MySQL 使用的主机,物理内存总大小为 8G , MySQL 最大连接数为

jopen 2012-12-12   18580   0

nginx+tomcat+memcached负载均衡集群搭建详细笔记(上) 经验

获取socket连接池的实例对象 SockIOPool pool = SockIOPool.getInstance(); // 设置服务器信息 pool.setServers(servers); pool.setWeights(weights);

jopen 2015-06-24   83360   0

MySQL 5.7新特性介绍 经验

在线修改buffer pool的大小 MySQL 5.7为了支持online buffer pool resize,引入chunk的概念,每个chunk默认是128M,当我们在线修改buffer pool的时候,

wet 2016-06-15   14163   0

jedis基本介绍 经验

式可以解决那些问题并且会实现高效的性能. 初始化JedisPool JedisPool pool = new JedisPool(new JedisPoolConfig(), "localhost");

jopen 2012-07-22   84834   0

ES6的generator. 方便编写顺序的异步代码. 经验

一个更实际的例子: 使用 fs 和 mysql 异步读取数据 var fs = require('fs'), pool = require('mysql').createPool({ host: "localhost"

jopen 2014-12-22   18755   0

C# mysql 连接池 经验

        ///          private static MysqlPool pool = null;         /// 

        /// 连接池创建时间

jopen 2015-12-30   15776   0

java DBUtil的简单封装(dbutil+tomcat jdbcpool) 代码段

import org.apache.tomcat.jdbc.pool.DataSource; import org.apache.tomcat.jdbc.pool.PoolProperties; public class

HelGillum 2016-01-21   843   0
1 2 3 4 5 6 7 8 9 10