php-atree:PHP的快速内存树存储结构

时间:2021-04-29 18:29:58
【文件属性】:
文件名称:php-atree:PHP的快速内存树存储结构
文件大小:18KB
文件格式:ZIP
更新时间:2021-04-29 18:29:58
C PHP的树 PHP的快速内存树存储结构 Atree是为快速数据检索而优化的内存中搜索树。 搜索树基于基数树,但避免了内部节点的浪费空间。 Atree使PHP开发人员可以快速将数据存储在内存中,而不管其数据类型或大小如何。 建造 遵循通常PHP扩展说明 phpize ./configure --enable-atree make make test 正在安装 将扩展从modules / atree。*复制到您的php扩展目录。 然后从php.ini配置文件中加载扩展名。 extension=atree.so # in case of Windows extension=atree.dll 将从extension_dir指令加载extension_dir 。 例子 $ db = new atree(); // Add new keypair to the tree $ db -> put
【文件预览】:
php-atree-master
----php_atree.h(249B)
----tests()
--------atree_03_get.phpt(247B)
--------atree_02_put.phpt(254B)
--------atree_07_get_all.phpt(484B)
--------atree_08_get_prefix.phpt(925B)
--------atree_12_extends.phpt(593B)
--------atree_06_large_get.phpt(2KB)
--------skipif.inc(61B)
--------atree_09_get_double.phpt(639B)
--------atree_04_delete.phpt(450B)
--------atree_01_init.phpt(204B)
--------atree_05_size.phpt(659B)
--------atree_11_exception.phpt(670B)
--------atree_99_version.phpt(181B)
--------atree_10_get_all_double.phpt(696B)
----example.php(2KB)
----LICENSE(1KB)
----atree.c(22KB)
----README.md(967B)
----interface.c(10KB)
----atree.h(4KB)
----config.m4(328B)

网友评论