/[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 16 by dpavlin, Mon Aug 18 17:27:11 2008 UTC revision 25 by dpavlin, Mon Aug 18 19:01:00 2008 UTC
# Line 32  IDBOLCKNB Line 32  IDBOLCKNB
32  tcidbclose  tcidbclose
33  tcidbput  tcidbput
34  tcidbout  tcidbout
35    tcidbget
36    tcidbsearch
37    tcidbsearch2
38    IDBSSUBSTR
39    IDBSPREFIX
40    IDBSSUFFIX
41    IDBSFULL
42    IDBSTOKEN
43    IDBSTOKPRE
44    IDBSTOKSUF
45    tcidbiterinit
46    tcidbiternext
47    tcidbsync
48    tcidboptimize
49    tcidbvanish
50    tcidbcopy
51  );  );
52    
53  =head1 NAME  =head1 NAME
# Line 99  use constant { Line 115  use constant {
115    
116  =head2 tcidbput  =head2 tcidbput
117    
118    my $success = tcidbput( $idb, $id, $utf8_text );    my $success = tcidbput( $idb, $id, $text );
119    
120  =head2 tcidbout  =head2 tcidbout
121        
122    my $success = tcidbout( $idb, $id );    my $success = tcidbout( $idb, $id );
123    
124    =head2 tcidbget
125      
126      my $text = tcidbget( $idb, $id );
127    
128    =head2 tcidbsearch
129    
130      my $ids = tcidbsearch( $idb, $word, IDBSSUBSTR );
131    
132    =cut
133    
134    use constant {
135            IDBSSUBSTR => 0,                # substring matching
136            IDBSPREFIX => 1,                # prefix matching
137            IDBSSUFFIX => 2,                # suffix matching
138            IDBSFULL => 3,          # full matching
139            IDBSTOKEN => 4,         # token matching
140            IDBSTOKPRE => 5,                # token prefix matching
141            IDBSTOKSUF => 6,                # token suffix matching
142    };
143    
144    =head2 tcidbsearch2
145    
146      my $ids = tcidbsearch2( $idb, $expr );
147    
148    =head2 tcidbiterinit
149    
150      my $success = tcidbiterinit( $idb );
151    
152    =head2 tcidbiternext
153    
154      my $id = tcidbiternext( $idb );
155    
156    =head2 tcidbsync
157    
158      my $success = tcidbsync( $idb );
159    
160    =head2 tcidboptimize
161    
162      my $success = tcidboptimize( $idb );
163    
164    =head2 tcidbvanish
165    
166      my $success = tcidbvanish( $idb );
167    
168    =head2 tcidbcopy
169    
170      my $success = tcidbcopy( $idb, '/path/of/copy' );
171    
172    =cut
173    
174  =head1 KNOWN BUGS  =head1 KNOWN BUGS
175    
176  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.16  
changed lines
  Added in v.25

  ViewVC Help
Powered by ViewVC 1.1.26