09/06/2006
Perl XS and SWIG interface to CLucene C++ text search engine
5
Terms
lPerl ~ Pathologically Eclectic Rubbish Lister
$_ = "wftedskaebjgdpjgidbsmnjgc";
tr/a-z/oh, turtleneck Phrase Jar!/; print;
lPerl XS ~ eXternal Subroutine
allows a perl program to call a C language subroutine
XS is also the “glue” language specifying the calling interface
contains complex “perlguts” stuff that will destroy your sanity
lSWIG ~ Simplified Wrapper and Interface Generator
makes it easy to call a C/C++ library from many languages (perl, python, ruby, PHP…)
lC++ ~ Object Oriented version of C programming language
ltext search ~ boolean searching of stemmed words, wildcards
lCLucene ~ C++ text search engine based on Java Lucene
l