bend_delete() no longer returns without value.
[simpleserver-moved-to-github.git] / README
1 Net::Z3950::SimpleServer - Simple Perl API for building Z39.50 servers.
2
3 The SimpleServer module is a tool for constructing Z39.50 "Information
4 Retrieval" servers in Perl. The module is easy to use, but it does
5 help to have an understanding of the Z39.50 query structure and the
6 construction of structured retrieval records.
7
8 Z39.50 is a network protocol for searching remote databases and
9 retrieving the results in the form of structured "records". It is
10 widely used in libraries around the world, as well as in the US
11 Federal Government. In addition, it is generally useful whenever you
12 wish to integrate a number of different database systems around a
13 shared, asbtract data model.
14
15 The model of the module is simple: It implements a "generic" Z39.50
16 server, which invokes callback functions supplied by you to search for
17 content in your database. You can use any tools available in Perl to
18 supply the content, including modules like DBI and WWW::Search.
19
20 The server will take care of managing the network connections for you,
21 and it will spawn a new process (or thread, in some environments)
22 whenever a new connection is received.
23
24 AUTHORS
25         Anders Sønderberg <sondberg@indexdata.dk>
26         Sebastian Hammer <quinn@indexdata.dk>
27         Mike Taylor <mike@indexdata.com>
28