Download the PHP package meshell/ffi-pinyin without Composer
On this page you can find all versions of the php package meshell/ffi-pinyin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download meshell/ffi-pinyin
More information about meshell/ffi-pinyin
Files in meshell/ffi-pinyin
Package ffi-pinyin
Short Description Quickly convert Chinese to chinese pinyin
License MIT
Informations about the package ffi-pinyin
ffi-pinyin
该项目是将中文汉字转换成拼音,使用rust
构建动态链接库来给php
调用。
该库主要是为了提高php
中文转换拼音的性能问题而构建(特别是长文章)。
环境
需要php >= 7.4
以上的版本并且开启了FFI
扩展。如果你需要自己编译库还需要装rust
工具链。
还需要设置php.ini
中的ffi.enable
为On
。
Usage
该库提供四种基础用法:不带音标,带音标,首字母,多音字带音标。
以上程序执行后的结果:
多音字是以:
来连接的。
Benchmark
选用了比较流行的https://github.com/overtrue/pinyin
作为比较对象。
使用的测试命令:
使同等数据循环100次测试结果:
benchmark | subject | set | revs | iter | mem_peak | time_rev | comp_z_value | comp_deviation |
---|---|---|---|---|---|---|---|---|
Bench | benchFFI | 0 | 1 | 0 | 569,696b | 2,007.000μs | 0.00σ | 0.00% |
Bench | benchNative | 0 | 1 | 0 | 2,679,192b | 128,229.000μs | 0.00σ | 0.00% |
Bench | benchNativeMemory | 0 | 1 | 0 | 2,678,544b | 91,516.000μs | 0.00σ | 0.00% |
Bench | benchNativeGenerator | 0 | 1 | 0 | 632,680b | 12,223,686.000μs | 0.00σ | 0.00% |
相比之下与比较对象最快的也相差45倍的性能之差。
单次执行测试结果:
benchmark | subject | set | revs | iter | mem_peak | time_rev | comp_z_value | comp_deviation |
---|---|---|---|---|---|---|---|---|
Bench | benchFFI | 0 | 1 | 0 | 569,696b | 1,599.000μs | 0.00σ | 0.00% |
Bench | benchNative | 0 | 1 | 0 | 2,679,192b | 19,783.000μs | 0.00σ | 0.00% |
Bench | benchNativeMemory | 0 | 1 | 0 | 2,678,544b | 21,160.000μs | 0.00σ | 0.00% |
Bench | benchNativeGenerator | 0 | 1 | 0 | 632,680b | 125,524.000μs | 0.00σ | 0.00% |
相比之下与比较对象最快的差不多20倍的性能之差。
FAQ
-
在
centos
上执行失败?确定是不是
glibc
版本过低。可以使用ldd lib/libffi_pinyin.so
来查看库信息。 如果出现/lib64/libc.so.6: version 'glibc_2.18' not found
就说明你服务的glibc
版本过低。 下载glibc编译升级,下载地址:wget http://mirrors.ustc.edu.cn/gnu/libc/glibc-2.18.tar.gz
All versions of ffi-pinyin with dependencies
ext-ffi Version *