码迷,mamicode.com
首页 >  
搜索关键字:detected memory leak    ( 29474个结果
MySQL数据库的两种连接方式:TCP/IP和Socket
Linux平台环境下主要有两种连接方式,一种是TCP/IP连接方式,另一种就是socket连接。 在Windows平台下,有name pipe和share memory(不考虑)两种。 TCP/IP连接是网络中用得最多的一种方式。 环境: MySQL数据库实例IP:192.168.0.2 MySQL ...
分类:数据库   时间:2020-01-16 12:24:44    阅读次数:95
Educational Codeforces Round 80 (Rated for Div. 2) 题解
"Deadline" "Yet Another Meme Problem" "Two Arrays" "Minimax Problem" "Messenger Simulator" Deadline $$ Time Limit: 2 s\quad Memory Limit: 256 MB $$ 这是 ...
分类:其他好文   时间:2020-01-16 01:09:07    阅读次数:79
Hekaton: SQL Server’s Memory-Optimized OLTP Engine
Hekaton是内存数据库,以往的数据库都是基于磁盘构建的, 但是当前硬件的发展,已经可以将很多应用的数据整个放到内存中,所以需要新的架构,基于超大内存和多核CPU的数据库架构 当前目标是把Sql Server的性能提升100倍 那么提升的办法,一般有3种,提升scalability,提升CPI,或 ...
分类:数据库   时间:2020-01-15 20:01:00    阅读次数:125
HDU-3183 A Magic Lamp--贪心+暴力数组移动
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3183 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Problem Descripti ...
分类:移动开发   时间:2020-01-15 14:15:48    阅读次数:105
[codeforces1284D]New Year and Conference 离散化+multiset【或排序+线段树】
【题目】:题目链接 time limit per test 2 seconds memory limit per test 1024 megabytes input standard input output standard output Filled with optimism, Hyunuk ...
分类:编程语言   时间:2020-01-15 13:57:05    阅读次数:77
springboot 文档果实
1.@RequestMapping @RestController @RequestMapping注释提供“路由”的信息。它告诉Spring,任何带有/路径的HTTP请求都应映射到该home方法。该 @RestController注释告诉Spring将结果字符串直接呈现给调用者。这两个注解一般出现在 ...
分类:编程语言   时间:2020-01-15 13:45:49    阅读次数:86
Redis系列之(四)——深入reids优化
转:https://www.jianshu.com/p/978b51ffbbc4 一、redis内存 1、内存占用 info memory info memory 127.0.0.1:6379> info memory # Memory used_memory:940008 used_memory_ ...
分类:其他好文   时间:2020-01-14 00:00:01    阅读次数:81
Linux LVM简明教程
建2块 linux lvm 格式的 分区 fdisk /dev/vdb Welcome to fdisk (util-linux 2.23.2). Changes will remain in memory only, until you decide to write them. Be caref ...
分类:系统相关   时间:2020-01-13 22:06:57    阅读次数:130
浏览器缓存机制
首先,上图(借鉴的别人的图) 说明下from memory cache 和 from disk cache 的区别: 首先 from memory cache 不访问服务器,直接从内存中读取,进程退出之后就没有了。from disk cache 不访问服务器,直接从磁盘缓存中读取,进程退出之后依然存 ...
分类:其他好文   时间:2020-01-13 21:49:11    阅读次数:84
大多数人不知道 C++ std::shared_ptr的引用不会增加它的计数值
#include <thread> #include <memory> #include <Windows.h> int main() { std::thread t; { std::shared_ptr<int> p(new int(1), [](int* p) { printf("delete\ ...
分类:编程语言   时间:2020-01-13 11:01:26    阅读次数:101
29474条   上一页 1 ... 74 75 76 77 78 ... 2948 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!