码迷,mamicode.com
首页 >  
搜索关键字:buffer    ( 4969个结果
基于轻量级ORM框架Dapper的扩展说明
这里简单的介绍一下本人基于Dapper作的一些简单的扩展,供大家参考。 为何要使用这款框架,相信大家看到下面排名就清楚了 其实在各大网站上,我们大概都会看到这样的一个对比效果图,在超过500次poco serialization的过程中所表现的性能,我们发现dapper是第二名, 当然第一名谁也无法 ...
分类:移动开发   时间:2017-09-01 11:21:26    阅读次数:556
LINUX 笔记-free 命令
free命令可以显示Linux系统中空闲的、已用的物理内存及swap内存,及被内核使用的buffer。 focus@ubuntu:~$ free -h total used free shared buff/cache availableMem: 3.8G 1.3G 928M 27M 1.7G 2. ...
分类:系统相关   时间:2017-08-31 22:24:53    阅读次数:272
httpclient请求返回响应体,报警告"Going to buffer response body of large or unknown size"的解决方案
通过httpclient模拟post请求,接收响应的时候报了这样一个警告: org.apache.commons.httpclient.HttpMethodBase - Going to buffer response body of large or unknown size. Using get ...
分类:Web程序   时间:2017-08-31 14:21:28    阅读次数:251
message.go
package nsqdimport ( "bytes" "encoding/binary" "fmt" "io" "time")const ( MsgIDLength = 16 minValidMsgLength = MsgIDLength + 8 + 2 // Timestamp + Attem... ...
分类:其他好文   时间:2017-08-31 13:00:05    阅读次数:209
buffer_pool.go
package nsqdimport ( "bytes" "sync")var bp sync.Poolfunc init() { bp.New = func() interface{} { return &bytes.Buffer{} }}func bufferPoolGet() *bytes.B... ...
分类:其他好文   时间:2017-08-31 12:49:28    阅读次数:108
options.go
package nsqdimport ( "crypto/md5" "crypto/tls" "hash/crc32" "io" "log" "os" "time")type Options struct { // basic options ID int64 `flag:"worke... ...
分类:其他好文   时间:2017-08-31 12:43:49    阅读次数:123
mysql-5.7 innodb change buffer 详解
一、innodb change buffer 介绍: 1、innodb change buffer 是针对oltp场景下磁盘IO的一种优化(我也感觉这个不太像人话,但是它又非常的准确的说明 innodb change buffer 的功能) 二、innodb change buffer 原理: 对于 ...
分类:数据库   时间:2017-08-30 15:44:09    阅读次数:191
读书笔记--《Python基础教程第二版》--第2章列表和元组
第二章列表和元组2.1序列的概览序列:每个元素被分配一个序号6种:列表、元组、字符串、Unicode字符串、buffer对象、xrange对象序列可以嵌套序列python容器的概念:序列、字典、集合2.2通用序列的操作索引、分片、加、乘、属于、长度,最大值、最小值、迭代2.2.1索引>>&g..
分类:编程语言   时间:2017-08-29 18:50:32    阅读次数:219
elasticsearch 性能监控基础
一、Elasticsearch 是什么 Elasticsearch是一款用Java编写的开源分布式文档存储和搜索引擎,可以用于near real-time存储和数据检索。 1、Elasticsearch简要组成 在开始探索性能指标之前,让我们来看看Elasticsearch的工作原理,在elasti ...
分类:其他好文   时间:2017-08-29 15:34:25    阅读次数:220
C# 导出Excel的示例(转)
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Windows.Forms; using System.Reflection; namespace D... ...
分类:Windows程序   时间:2017-08-29 13:02:16    阅读次数:231
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!