-
Notifications
You must be signed in to change notification settings - Fork 10
/
README
53 lines (40 loc) · 1.6 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
README for Net-Patricia
-----------------------
Net::Patricia - Patricia Trie perl module for fast IP address lookups
DESCRIPTION
-----------
This module uses a Patricia Trie data structure to quickly
perform IP address prefix matching for applications such as
IP subnet, network or routing table lookups. The data
structure is based on a radix tree using a radix of two, so
sometimes you see patricia implementations called "radix" as
well. The term "Trie" is derived from the word "retrieval"
but is pronounced like "try". Patricia stands for
"Practical Algorithm to Retrieve Information Coded as
Alphanumeric", and was first suggested for routing table
lookups by Van Jacobsen. Patricia Trie performance
characteristics are well-known as it has been employed for
routing table lookups within the BSD kernel since the 4.3
Reno release.
The BSD radix code is thoroughly described in "TCP/IP
Illustrated, Volume 2" by Wright and Stevens and in the
paper ``A Tree-Based Packet Routing Table for Berkeley
Unix'' by Keith Sklower.
Availability
------------
My "home" site for Net::Patricia is:
http://net.doit.wisc.edu/~plonka/Net-Patricia/
Installation
------------
This package extracts, builds, installs in the usual fashion, i.e.:
$ gunzip -c <Package-version>.tar.gz |tar xf -
$ cd <Package-version>
$ perl Makefile.PL
$ make
$ make test
# make install
Requirements
------------
* perl version 5
--
plonka@doit.wisc.edu http://net.doit.wisc.edu/~plonka ARS:N9HZF Madison, WI