lua-resty-iconv
luajit ffi 绑定 libiconv - 字符编码转换
$ opm get xiaooloong/lua-resty-iconv
lua-resty-iconv
LuaJIT FFI 绑定 libiconv - OpenResty 中的字符编码转换
示例
location =/test {
content_by_lua_block {
local iconv = require 'resty.iconv'
local from = 'UTF-8'
local to = 'GBK'
ngx.header['Content-Type'] = 'text/plain;charset=' .. to
local i, err = iconv:new(to, from)
if not i then
return ngx.say(err)
end
local t, count = i:convert('文件编码UTF-8')
if not t then
return ngx.say(count)
end
ngx.say('text : ', t)
ngx.say('non-reversible characters : ', count)
}
}
基准测试 @ Intel(R) Core(TM) i3-4150 CPU @ 3.50GHz
使用 ab -c10 -n50000 -k
Server Software: openresty/1.11.2.2
Server Hostname: localhost
Server Port: 80
Document Path: /test
Document Length: 51 bytes
Concurrency Level: 10
Time taken for tests: 1.585 seconds
Complete requests: 50000
Failed requests: 0
Write errors: 0
Keep-Alive requests: 49504
Total transferred: 10847520 bytes
HTML transferred: 2550000 bytes
Requests per second: 31541.34 [#/sec] (mean)
Time per request: 0.317 [ms] (mean)
Time per request: 0.032 [ms] (mean, across all concurrent requests)
Transfer rate: 6682.53 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.0 0 0
Processing: 0 0 0.1 0 3
Waiting: 0 0 0.1 0 3
Total: 0 0 0.1 0 3
Percentage of the requests served within a certain time (ms)
50% 0
66% 0
75% 0
80% 0
90% 0
95% 0
98% 0
99% 0
100% 3 (longest request)
作者
xiaooloong
许可证
gpl3
依赖
luajit
版本
-
luajit ffi 绑定 libiconv - 字符编码转换 2016-11-21 09:09:01
-
luajit ffi 绑定 libiconv - 字符编码转换 2016-11-18 07:49:18