| 1 |
root |
1.1 |
NAME |
| 2 |
|
|
AnyEvent::BDB - truly asynchronous berkeley db access |
| 3 |
|
|
|
| 4 |
|
|
SYNOPSIS |
| 5 |
|
|
use AnyEvent::BDB; |
| 6 |
|
|
use BDB; |
| 7 |
|
|
|
| 8 |
|
|
# can now use any of the requests your BDB module supports |
| 9 |
|
|
# as long as you use an event loop supported by AnyEvent. |
| 10 |
|
|
|
| 11 |
|
|
DESCRIPTION |
| 12 |
|
|
This module is an AnyEvent user, you need to make sure that you use and |
| 13 |
|
|
run a supported event loop. |
| 14 |
|
|
|
| 15 |
|
|
Loading this module will install the necessary magic to seamlessly |
| 16 |
|
|
integrate BDB into AnyEvent, i.e. you no longer need to concern yourself |
| 17 |
|
|
with calling "BDB::poll_cb" or any of that stuff (you still can, but |
| 18 |
|
|
this module will do it in case you don't). |
| 19 |
|
|
|
| 20 |
|
|
The AnyEvent watcher can be disabled by executing "undef |
| 21 |
|
|
$AnyEvent::BDB::WATCHER". Please notify the author of when and why you |
| 22 |
|
|
think this was necessary. |
| 23 |
|
|
|
| 24 |
|
|
SEE ALSO |
| 25 |
|
|
AnyEvent, Coro::BDB (for a more natural syntax). |
| 26 |
|
|
|
| 27 |
|
|
AUTHOR |
| 28 |
|
|
Marc Lehmann <schmorp@schmorp.de> |
| 29 |
|
|
http://home.schmorp.de/ |
| 30 |
|
|
|