UnQLite:Unqlite 的 Perl5 绑定

时间:2021-07-05 08:50:58
【文件属性】:
文件名称:UnQLite:Unqlite 的 Perl5 绑定
文件大小:456KB
文件格式:ZIP
更新时间:2021-07-05 08:50:58
C 名称 UnQLite - UnQLite 的 Perl 绑定 概要 use UnQLite; my $db = UnQLite->open('foo.db', UnQLite::UNQLITE_OPEN_READWRITE|UnQLite::UNQLITE_OPEN_CREATE); $db->kv_store('foo', 'bar'); say $db->kv_fetch('foo'); # => bar $db->kv_delete('foo'); undef $db; # close database # tie interface tie my %hash, 'UnQLite', 'foo.db', UnQLite::UNQLITE_OPEN_READWRITE; $hash{foo} = 'bar'; say $hash{foo}; # => bar 描述 UnQLite 是
【文件预览】:
UnQLite-master
----.travis.yml(49B)
----cpanfile(88B)
----Build.PL(2KB)
----t()
--------02_cursor.t(1KB)
--------03_tie.t(1KB)
--------00_compile.t(78B)
--------01_simple.t(584B)
----LICENSE(18KB)
----unqlite()
--------license.txt(1KB)
--------unqlite.c(1.8MB)
--------unqlite.h(47KB)
----minil.toml(23B)
----META.json(2KB)
----.gitignore(188B)
----lib()
--------UnQLite.xs(10KB)
--------ppport.h(176KB)
--------UnQLite.pm(7KB)
----README.md(3KB)
----Changes(477B)

网友评论