Checking in changes prior to tagging of version 0.02.
Changelog diff is: diff --git a/Changes b/Changes index 947f86c..fb8ef47 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,13 @@ Revision history for Perl extension Unqlite {{$NEXT}} +0.02 2013-07-05T06:42:59Z + + - Store RC to magic to fix race condition + (charsbar) + - Added `tie` interface. + (charsbar) + 0.01 2013-07-03T19:02:44Z - original version
This commit is contained in:
parent
21f038767e
commit
e727b98d1d
4 changed files with 17 additions and 2 deletions
7
Changes
7
Changes
|
@ -2,6 +2,13 @@ Revision history for Perl extension Unqlite
|
||||||
|
|
||||||
{{$NEXT}}
|
{{$NEXT}}
|
||||||
|
|
||||||
|
0.02 2013-07-05T06:42:59Z
|
||||||
|
|
||||||
|
- Store RC to magic to fix race condition
|
||||||
|
(charsbar)
|
||||||
|
- Added `tie` interface.
|
||||||
|
(charsbar)
|
||||||
|
|
||||||
0.01 2013-07-03T19:02:44Z
|
0.01 2013-07-03T19:02:44Z
|
||||||
|
|
||||||
- original version
|
- original version
|
||||||
|
|
|
@ -63,5 +63,8 @@
|
||||||
"web" : "https://github.com/tokuhirom/UnQLite"
|
"web" : "https://github.com/tokuhirom/UnQLite"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version" : "0.01"
|
"version" : "0.02",
|
||||||
|
"x_contributors" : [
|
||||||
|
"Kenichi Ishigaki <ishigaki@cpan.org>"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,11 @@ UnQLite - Perl bindings for UnQLite
|
||||||
$db->kv_delete('foo');
|
$db->kv_delete('foo');
|
||||||
undef $db; # close database
|
undef $db; # close database
|
||||||
|
|
||||||
|
# tie interface
|
||||||
|
tie my %hash, 'UnQLite', 'foo.db';
|
||||||
|
$hash{foo} = 'bar';
|
||||||
|
say $hash{foo}; # => bar
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
|
|
||||||
UnQLite is a in-process software library which implements a self-contained, serverless, zero-configuration, transactional NoSQL database engine. UnQLite is a document store database similar to MongoDB, Redis, CouchDB etc. as well a standard Key/Value store similar to BerkeleyDB, LevelDB, etc.
|
UnQLite is a in-process software library which implements a self-contained, serverless, zero-configuration, transactional NoSQL database engine. UnQLite is a document store database similar to MongoDB, Redis, CouchDB etc. as well a standard Key/Value store similar to BerkeleyDB, LevelDB, etc.
|
||||||
|
|
|
@ -4,7 +4,7 @@ use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
our $VERSION = "0.01";
|
our $VERSION = "0.02";
|
||||||
our $rc = 0;
|
our $rc = 0;
|
||||||
|
|
||||||
use XSLoader;
|
use XSLoader;
|
||||||
|
|
Loading…
Add table
Reference in a new issue