fasthttp, VictoriaMetrics等组件的作者valyala可谓是把slice复用这个技巧玩上了天,具体可以看fasthttp主页上的Tricks with []byte buffers这部分介绍。 概要的总结起来就是:[]byte这样的数组分配后,不要释放,然后下次使用前,用slice=slice[:0]来清空,继续使用其上次分配好的cap指向的空间。 这篇中文的总结也非常不错...
fasthttp, VictoriaMetrics等组件的作者valyala可谓是把slice复用这个技巧玩上了天,具体可以看fasthttp主页上的Tricks with[]bytebuffers这部分介绍。 概要的总结起来就是:[]byte这样的数组分配后,不要释放,然后下次使用前,用slice=slice[:0]来清空,继续使用其上次分配好的cap指向的空间。 这篇中文的总结也非常不错:...
ants是一个受fasthttp启发的高性能协程池, fasthttp号称是比go原生的net/http快10倍,其快速高性能的原因之一就是采用了各种池化技术(这个日后再开新坑去读源码), ants相比之前两种协程池,其模型更像是之前接触到的数据库连接池,需要从空余的worker中取出一个来执行任务, 当无可用空余worker的时候再去创建,而当poo...
go-web-framework-benchmark fiber - 一种 Express 风格的、基于 fasthttp 的 HTTP Web 框架 aah go-zero - 好未来开源的 Web 框架 pingcap/fn - 支持绑定任何方法,构建成 POST+JSON 接口 flamego - unknwon 开发的又一款 Web 框架 业务框架 GoAdminGroup/go-admin - 后台管理快速开发框架,与 laravel-admin ...
Bitcask - Bitcask is an embeddable, persistent and fast key-value (KV) database written in pure Go with predictable read/write performance, low latency and high throughput thanks to the bitcask on-disk layout (LSM+WAL). buntdb - Fast, embeddable, in-memory key/value database for Go with ...
- Package fasthttp is a fast HTTP implementation for Go, up to 10 times faster than net/http - Package golibwireshark use libwireshark library to decode pcap file and analyse dissection data. gopacket- A Go library for packet processing with libpcap bindings ...
替换默认的 net/http 为 fasthttp,基准测试性能提升约10倍 替换默认的 encoding/base64 为基于 Turbo-Base64 实现的 cristalhq/base64,是基准测试性能提升约3倍 替换默认的 encoding/json 为基于代码生成免除反射调用的 easyjson,,基准测试性能提升约5倍 调整默认的 最大并发数 GOMAXPROCS 8 为4倍值约30,能达到...
fasthttp - Package fasthttp is a fast HTTP implementation for Go, up to 10 times faster than net/http. fortio - Load testing library and command line tool, advanced echo server and web UI. Allows to specify a set query-per-second load and record latency histograms and other useful stats ...
fiber - 一种 Express 风格的、基于 fasthttp 的 HTTP Web 框架 aah go-zero - 好未来开源的 Web 框架 pingcap/fn - 支持绑定任何方法,构建成 POST+JSON 接口 flamego - unknwon 开发的又一款 Web 框架 业务框架 GoAdminGroup/go-admin - 后台管理快速开发框架,与 laravel-admin 类似 wenjianzhang/go-admin ...
github.com/valyala/fasthttp v1.21.0/go.mod h1:jjraHZVbKOXftJfsOYoAjaeygpj5hr8ermTRJNroD7A= github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod...