/[Search-TokyoDystopia]/lib/Search/TokyoDystopia.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/Search/TokyoDystopia.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 12 by dpavlin, Sun Aug 17 23:59:46 2008 UTC revision 19 by dpavlin, Mon Aug 18 18:32:55 2008 UTC
# Line 30  IDBOTRUNC Line 30  IDBOTRUNC
30  IDBONOLCK  IDBONOLCK
31  IDBOLCKNB  IDBOLCKNB
32  tcidbclose  tcidbclose
33    tcidbput
34    tcidbout
35    tcidbget
36    tcidbsearch
37    IDBSSUBSTR
38    IDBSPREFIX
39    IDBSSUFFIX
40    IDBSFULL
41    IDBSTOKEN
42    IDBSTOKPRE
43    IDBSTOKSUF
44    tcidbiterinit
45  );  );
46    
47  =head1 NAME  =head1 NAME
# Line 58  If you don't prevent it, it will export Line 70  If you don't prevent it, it will export
70    
71  =head2 tcidbtune  =head2 tcidbtune
72    
73    my $success = tcidbtune( $idb, $ernum, $etnum, $iusiz, IDBTLARGE || IDBTDEFLATE );    my $success = tcidbtune( $idb, $ernum, $etnum, $iusiz, IDBTLARGE | IDBTDEFLATE );
74    
75  =cut  =cut
76    
# Line 78  use constant { Line 90  use constant {
90    
91  =head2 tcidbopen  =head2 tcidbopen
92    
93    my $success = tcidbopen( $idb, 'casket', IDBOWRITER || IDBOCREAT );    my $success = tcidbopen( $idb, 'casket', IDBOWRITER | IDBOCREAT );
94    
95  =cut  =cut
96    
# Line 95  use constant { Line 107  use constant {
107    
108    my $success = tcidbclose( $idb );    my $success = tcidbclose( $idb );
109    
110    =head2 tcidbput
111    
112      my $success = tcidbput( $idb, $id, $text );
113    
114    =head2 tcidbout
115      
116      my $success = tcidbout( $idb, $id );
117    
118    =head2 tcidbget
119      
120      my $text = tcidbget( $idb, $id );
121    
122    =head2 tcidbsearch
123    
124      my @ids = tcidbsearch( $idb, $word, IDBSSUBSTR )
125    
126    =cut
127    
128    use constant {
129            IDBSSUBSTR => 0,                # substring matching
130            IDBSPREFIX => 1,                # prefix matching
131            IDBSSUFFIX => 2,                # suffix matching
132            IDBSFULL => 3,          # full matching
133            IDBSTOKEN => 4,         # token matching
134            IDBSTOKPRE => 5,                # token prefix matching
135            IDBSTOKSUF => 6,                # token suffix matching
136    };
137    
138    =head2 tcidbiterinit
139    
140      my $success = tcidbiterinit;
141    
142    =cut
143    
144  =head1 KNOWN BUGS  =head1 KNOWN BUGS
145    
146  Low-level functions often just die when called on invalid (or deleted) database  Low-level functions often just die when called on invalid (or deleted) database

Legend:
Removed from v.12  
changed lines
  Added in v.19

  ViewVC Help
Powered by ViewVC 1.1.26