码迷,mamicode.com
首页 >  
搜索关键字:constant pool    ( 4909个结果
nginx源码分析—内存池结构ngx_pool_t及内存管理
Content0.序1.内存池结构1.1 ngx_pool_t结构1.2其他相关结构1.3 ngx_pool_t的逻辑结构2.内存池操作2.1创建内存池2.2销毁内存池2.3重置内存池2.4分配内存2.4.1 ngx_palloc()函数分析2.4.2 ngx_palloc_block()函数分析2...
分类:其他好文   时间:2015-03-30 22:28:36    阅读次数:240
leetcode_num155_Min Stack
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- Get...
分类:其他好文   时间:2015-03-30 18:55:43    阅读次数:104
tomcat创建连接池及helpDB类连接方法的书写
1、tomcat中sever配置     factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" initialSize="10"  jdbcInterceptors="org.apache.tomcat.jdbc.pool.interceptor.ConnectionState;  org.apache.tomcat.jdbc.po...
分类:数据库   时间:2015-03-30 11:29:43    阅读次数:147
Sicily 1422. Table Tennis
1422. Table Tennis Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description There is a rectangular pool table ABCD with side lengths m and n, where m and n are integers with m...
分类:其他好文   时间:2015-03-30 09:20:57    阅读次数:179
python中itertools模块介绍---03
product(*iterables[,repeat]): 源代码: def?product(*args,**kwds): ????pools=map(tuple,args)*kwds.get("repeat",1) ????result=[[]] ????for?pool?in?pools: ????????result=[x+[y]...
分类:编程语言   时间:2015-03-29 23:49:12    阅读次数:546
Java学习(三):Java存储区分类
Java中把存储区分为6类。分别为寄存器(register)、栈(stack)、堆(heap)、静态存储区(static storage)、常量存储区(constant storage)以及非随机存取存储区(Non-RAM)。1. 寄存器(register).寄存器与其他的存储区不同,它位于CPU中...
分类:编程语言   时间:2015-03-29 19:28:26    阅读次数:188
LeetCode First Missing Positive
Given an unsorted integer array, find the first missing positive integer.For example,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your algorithm should run in O(n) time and uses constant space.思路分析:...
分类:其他好文   时间:2015-03-29 13:39:00    阅读次数:106
Sort List
https://leetcode.com/problems/sort-list/Sort a linked list inO(nlogn) time using constant space complexity.解题思路:常见的O(nlogn)算法,快速排序、归并排序,堆排序。大概讲讲优缺点,在数...
分类:其他好文   时间:2015-03-28 21:32:10    阅读次数:114
共享内存 share pool :BUCKET /FREE LISTS /RESERVED FREE LISTS /UNPINNED RECREATABLE CHUNKS (lru first)
相关概念BUCKET :每个bucket上挂有一个 chunk list。同一个BUCKET中的chunk在物理地址上是不一定相邻的FREE LISTS:按bucket划分,共有255个,bucket 0---bucket 254RESERVED FREE LISTS:在SQL语句所需CHUNK大于...
分类:其他好文   时间:2015-03-21 22:39:16    阅读次数:229
MySQL配置
基本配置 你需要经常察看以下3个配置项。不然,可能很快就会出问题。 innodb_buffer_pool_size:这是你安装完InnoDB后第一个应该设置的选项。缓冲池是数据和索引缓存的地方:这个值越大越好,这能保证你在大多数的...
分类:数据库   时间:2015-03-20 20:34:17    阅读次数:227
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!