michigan search engine marketing
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2961
Michigan search engine marketing 1.0
michigan search engine marketing bar, from Netvantage Marketing - a Michigan internet marketing firm specializing in paid search management, search en... more>> <<less
Download (1083KB)
Added: 2009-04-10 License: Freeware Price: Free
196 downloads
Kat - Desktop Search Engine for Linux 0.6.4
Kat is an application for KDE designed to index files. more>>
Kat is an application for KDE designed to index files. Meta information, fulltext and thumbnails are extracted from documents, images, mp3 and other media allowing quick and accurate information retrieval.
Similar to the Windows application WhereIsIt, but also similar to Google Desktop Search, Kat is completely written in C++, using Qt3, KDE and KIO libraries.
The application is based on the extensible kfile plugin architecture of KDE in order to facilitate the creation of new media managers for emerging file formats.
Kat is the first KDE application using the new fulltext kfile plugins.
Information retrieval relies on the powerful SQLite3 embedded database engine.
Supported document formats for full text search:
Documents:
- Adobe PDF Portable Document Format (1.5)
- DOC Microsoft Word Document (2, 6, 7, 97, 2000, 2002 and 2003)
- HTML HyperText Markup Language
- SXW OpenOffice 1.3 Writer Text Document
- SXI OpenOffice 1.3 Impress Presentation
- SXC OpenOffice 1.3 Calc Spreadsheet
- SXM OpenOffice 1.3 Math Formula
- ODT OpenOffice 2.0 Writer Text Document
- ODP OpenOffice 2.0 Impress Presentation
- ODC OpenOffice 2.0 Calc Chart
- ODF OpenOffice 2.0 Math Formula
- Plain Text
Images:
- BMP
- CGM
- DCX
- DIB
- FAX
- GIF
- ICO
- JPEG
- PBM
- PCD
- PCX
- PDB
- PGM
- PICT
- PIX
- PNG
- RGB
- RLE
- TGA
- TIF
- ...and other
<<lessSimilar to the Windows application WhereIsIt, but also similar to Google Desktop Search, Kat is completely written in C++, using Qt3, KDE and KIO libraries.
The application is based on the extensible kfile plugin architecture of KDE in order to facilitate the creation of new media managers for emerging file formats.
Kat is the first KDE application using the new fulltext kfile plugins.
Information retrieval relies on the powerful SQLite3 embedded database engine.
Supported document formats for full text search:
Documents:
- Adobe PDF Portable Document Format (1.5)
- DOC Microsoft Word Document (2, 6, 7, 97, 2000, 2002 and 2003)
- HTML HyperText Markup Language
- SXW OpenOffice 1.3 Writer Text Document
- SXI OpenOffice 1.3 Impress Presentation
- SXC OpenOffice 1.3 Calc Spreadsheet
- SXM OpenOffice 1.3 Math Formula
- ODT OpenOffice 2.0 Writer Text Document
- ODP OpenOffice 2.0 Impress Presentation
- ODC OpenOffice 2.0 Calc Chart
- ODF OpenOffice 2.0 Math Formula
- Plain Text
Images:
- BMP
- CGM
- DCX
- DIB
- FAX
- GIF
- ICO
- JPEG
- PBM
- PCD
- PCX
- PDB
- PGM
- PICT
- PIX
- PNG
- RGB
- RLE
- TGA
- TIF
- ...and other
Download (0.88MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1477 downloads
Altse Internet Search Engine 26102005
ALTSE is an alternative search engine technology. more>>
ALTSE is an alternative search engine technology.
It can index up to a couple million Web sites.
A search engine is a program designed to help find information stored on a computer system such as the World Wide Web, or a personal computer.
The search engine allows one to ask for content meeting specific criteria (typically those containing a given word or phrase) and retrieves a list of references that match those criteria.
Search engines use regularly updated indexes to operate quickly and efficiently. Without further qualification, search engine usually refers to a Web search engine, which searches for information on the public Web.
Other kinds of search engine are enterprise search engines, which search on intranets and personal search engines, which search individual personal computers.
Some search engines also mine data available in newsgroups, large databases, or open directories like DMOZ.org. Unlike Web directories, which are maintained by human editors, search engines operate algorithmically.
Most web sites which call themselves search engines, are actually front ends to other search engines owned by other companies. The typical user will often not know which underlying search engine they are using.
<<lessIt can index up to a couple million Web sites.
A search engine is a program designed to help find information stored on a computer system such as the World Wide Web, or a personal computer.
The search engine allows one to ask for content meeting specific criteria (typically those containing a given word or phrase) and retrieves a list of references that match those criteria.
Search engines use regularly updated indexes to operate quickly and efficiently. Without further qualification, search engine usually refers to a Web search engine, which searches for information on the public Web.
Other kinds of search engine are enterprise search engines, which search on intranets and personal search engines, which search individual personal computers.
Some search engines also mine data available in newsgroups, large databases, or open directories like DMOZ.org. Unlike Web directories, which are maintained by human editors, search engines operate algorithmically.
Most web sites which call themselves search engines, are actually front ends to other search engines owned by other companies. The typical user will often not know which underlying search engine they are using.
Download (0.34MB)
Added: 2005-10-27 License: Freely Distributable Price:
1458 downloads
Search::InvertedIndex 1.14
Search::InvertedIndex is a manager for inverted index maps. more>>
Search::InvertedIndex is a manager for inverted index maps.
SYNOPSIS
use Search::InvertedIndex;
my $database = Search::InvertedIndex::DB::DB_File_SplitHash->new({
-map_name => /www/search-engine/databases/test-maps/test,
-multi => 4,
-file_mode => 0644,
-lock_mode => EX,
-lock_timeout => 30,
-blocking_locks => 0,
-cachesize => 1000000,
-write_through => 0,
-read_write_mode => RDWR;
});
my $inv_map = Search::Inverted->new({ -database => $database });
##########################################################
# Example Update
##########################################################
my $index_data = "Some scalar - complex structure refs are ok";
my $update = Search::InvertedIndex::Update->new({
-group => keywords,
-index => http://www.nihongo.org/,
-data => $index_data,
-keys => {
some => 10,
scalar => 20,
complex => 15,
structure => 15,
refs => 15,
are => 15,
ok => 15,
},
});
my $result = $inv_map->update({ -update => $update });
##########################################################
# Example Query
# -nodes is an anon list of Search::InvertedIndex::Query
# objects (this allows constructing complex booleans by
# nesting).
#
# -leafs is an anon list of Search::InvertedIndex::Query::Leaf
# objects (used for individual search terms).
#
##########################################################
my $query_leaf1 = Search::InvertedIndex::Query::Leaf->new({
-key => complex,
-group => keywords,
-weight => 1,
});
my $query_leaf2 = Search::InvertedIndex::Query::Leaf->new({
-key => structure,
-group => keywords,
-weight => 1,
});
my $query_leaf3 = Search::InvertedIndex::Query::Leaf->new({
-key => gold,
-group => keywords,
-weight => 1,
});
my $query1 = Search::InvertedIndex::Query->new({
-logic => and,
-weight => 1,
-nodes => [],
-leafs => [$query_leaf1,$query_leaf2],
});
my $query2 = Search::InvertedIndex::Query->new({
-logic => or,
-weight => 1,
-nodes => [$query1],
-leafs => [$query_leaf3],
});
my $result = $inv_map->search({ -query => $query2 });
##########################################################
$inv_map->close;
<<lessSYNOPSIS
use Search::InvertedIndex;
my $database = Search::InvertedIndex::DB::DB_File_SplitHash->new({
-map_name => /www/search-engine/databases/test-maps/test,
-multi => 4,
-file_mode => 0644,
-lock_mode => EX,
-lock_timeout => 30,
-blocking_locks => 0,
-cachesize => 1000000,
-write_through => 0,
-read_write_mode => RDWR;
});
my $inv_map = Search::Inverted->new({ -database => $database });
##########################################################
# Example Update
##########################################################
my $index_data = "Some scalar - complex structure refs are ok";
my $update = Search::InvertedIndex::Update->new({
-group => keywords,
-index => http://www.nihongo.org/,
-data => $index_data,
-keys => {
some => 10,
scalar => 20,
complex => 15,
structure => 15,
refs => 15,
are => 15,
ok => 15,
},
});
my $result = $inv_map->update({ -update => $update });
##########################################################
# Example Query
# -nodes is an anon list of Search::InvertedIndex::Query
# objects (this allows constructing complex booleans by
# nesting).
#
# -leafs is an anon list of Search::InvertedIndex::Query::Leaf
# objects (used for individual search terms).
#
##########################################################
my $query_leaf1 = Search::InvertedIndex::Query::Leaf->new({
-key => complex,
-group => keywords,
-weight => 1,
});
my $query_leaf2 = Search::InvertedIndex::Query::Leaf->new({
-key => structure,
-group => keywords,
-weight => 1,
});
my $query_leaf3 = Search::InvertedIndex::Query::Leaf->new({
-key => gold,
-group => keywords,
-weight => 1,
});
my $query1 = Search::InvertedIndex::Query->new({
-logic => and,
-weight => 1,
-nodes => [],
-leafs => [$query_leaf1,$query_leaf2],
});
my $query2 = Search::InvertedIndex::Query->new({
-logic => or,
-weight => 1,
-nodes => [$query1],
-leafs => [$query_leaf3],
});
my $result = $inv_map->search({ -query => $query2 });
##########################################################
$inv_map->close;
Download (0.044MB)
Added: 2007-04-06 License: Perl Artistic License Price:
932 downloads
search engine optimization seo toolbar 1.0.1
search engine optimization toolbar, from Netvantage. paid search management, ppc, search engine marketing, sem, seo, search engine optimization, pay ... more>> <<less
Download (537KB)
Added: 2009-04-02 License: Freeware Price: Free
205 downloads

Okapiland Search Toolbar 1.3
Okapiland Search Toolbar provides Internet search in Composite Page Mode (CPM) that displays linked pages themselves. more>>
Okapiland Search Toolbar 1.3 will make your Firefox browser even more powerful as it is designed to provide Internet search in Composite Page Mode (CPM) that displays linked pages themselves in addition to hyperlinks.
All pages can be displayed by scrolling the pages. Internet Search is good for the quick search or clear search, but the deep search or ambiguous search requires your effort. The CPM can save your operation. To prevent unexpected intruder at displaying the linked pages, the dynamic type of contents, e.g. JavaScript or Applet, is not displayed.
Web search is provided with Yahoo! Search Web Services. Okapibar consists of a keyword input, search engine buttons, and function buttons. The search engine button selects YahooCPM or Yahoo. The function buttons are a highlight button to change the background color of words same as the key words, a compact button to change between one line and two-line layout, and a script button to show that Javascript is disable during the search in CPM.
Enhancements:
- Support Firefox 2.0, and add an improvement.
- The width of each frame is automatically adjusted at the resize of the browser.
Requirements:
- Mozilla Firefox
Added: 2007-09-26 License: MPL Price: FREE
27 downloads
MKSearch beta 1
MKSearch provides a Web metadata spider and search engine. more>>
MKSearch provides a Web metadata spider and search engine.
MKSearch is a metadata search engine that indexes structured metadata in Web documents instead of free text in the document body.
The data acquisition system conforms to the Dublin Core metadata in HTML recommendations, and supports other application profiles, such as the UK e-Government Metadata Standard.
It also indexes native RDF formats, including RSS 1.0. The system has five major components: a Web crawler, an HTML document validator and formatter, a set of custom indexers, an RDF storage and query system, and a public query interface, provided through a standard servlet container.
System composition
The MKSearch system is composed of several other free software components. Further details are provided in the MKSearch development plans.
JSpider
JSpider is a Java Web crawler engine that has pluggable interfaces that can be used to add custom processing and content handling. MKSearch uses custom SAX-based content handlers for extracting metadata from Web documents.
Sesame
Sesame is a set of RDF processing and storage APIs and applications that includes RDF data query facilities. MKSearch uses Sesame to store indexed metadata in RDF format and to search the repository via the public query interface.
JTidy
JTidy is a utility for correcting common HTML markup errors and is used to convert HTML documents to XHTML so they can be processed using SAX.
<<lessMKSearch is a metadata search engine that indexes structured metadata in Web documents instead of free text in the document body.
The data acquisition system conforms to the Dublin Core metadata in HTML recommendations, and supports other application profiles, such as the UK e-Government Metadata Standard.
It also indexes native RDF formats, including RSS 1.0. The system has five major components: a Web crawler, an HTML document validator and formatter, a set of custom indexers, an RDF storage and query system, and a public query interface, provided through a standard servlet container.
System composition
The MKSearch system is composed of several other free software components. Further details are provided in the MKSearch development plans.
JSpider
JSpider is a Java Web crawler engine that has pluggable interfaces that can be used to add custom processing and content handling. MKSearch uses custom SAX-based content handlers for extracting metadata from Web documents.
Sesame
Sesame is a set of RDF processing and storage APIs and applications that includes RDF data query facilities. MKSearch uses Sesame to store indexed metadata in RDF format and to search the repository via the public query interface.
JTidy
JTidy is a utility for correcting common HTML markup errors and is used to convert HTML documents to XHTML so they can be processed using SAX.
Download (9.0MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
980 downloads
Magellan Metasearch 1.4.2
Magellan Metasearch is a modular meta search engine. more>>
Magellan Metasearch is a modular meta search engine, enabling users to monitor as many search engines as they want.
Magellan Metasearch provides a complex query language with standard boolean operators, meta-operators (to search through pages metadata), and proximity operators.
This language enables users to perform far more complex queries than what common search engines currently support. It can be fed any custom sources, since its abstraction layer manages the search results and their meta tags in a uniform way.
In conjunction with the local process scheduler (such as "cron"), Magellan enables you to save your requests and replay them later automatically; new results are sent through email and RSS in realtime. Magellan also provides full anonymity through smart multi-proxy support.
Enhancements:
- This release enhances the automated parsing mechanism ; it also fixes a problem with small result sets that occasionally couldnt be extracted.
- Moreover, new virtual sources are automatically tested on creation / update to check their validity.
<<lessMagellan Metasearch provides a complex query language with standard boolean operators, meta-operators (to search through pages metadata), and proximity operators.
This language enables users to perform far more complex queries than what common search engines currently support. It can be fed any custom sources, since its abstraction layer manages the search results and their meta tags in a uniform way.
In conjunction with the local process scheduler (such as "cron"), Magellan enables you to save your requests and replay them later automatically; new results are sent through email and RSS in realtime. Magellan also provides full anonymity through smart multi-proxy support.
Enhancements:
- This release enhances the automated parsing mechanism ; it also fixes a problem with small result sets that occasionally couldnt be extracted.
- Moreover, new virtual sources are automatically tested on creation / update to check their validity.
Download (0.20MB)
Added: 2006-05-01 License: GPL (GNU General Public License) Price:
1273 downloads
Sethi Search Utility 0.8.7
Sethi Search Utility provides a simple command line utility to submit a search to Google, Yahoo!, or MSN. more>>
Sethi Search Utility provides a simple command line utility to submit a search to Google, Yahoo!, or MSN.
Sethi Search Utility is a simple command line utility to submit a search to Google, Yahoo!, or MSN and show the (text) results on standard output. Support for several search engines is included.
Its currently in serious need of a re-write, especially to avoid scraping and become a good engine using the search APIs provided.
Enhancements:
- The Google configuration was updated.
<<lessSethi Search Utility is a simple command line utility to submit a search to Google, Yahoo!, or MSN and show the (text) results on standard output. Support for several search engines is included.
Its currently in serious need of a re-write, especially to avoid scraping and become a good engine using the search APIs provided.
Enhancements:
- The Google configuration was updated.
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
558 downloads
URI::ParseSearchString 1.0
URI::ParseSearchString is a Perl module that can parse Apache refferer logs and extract search engine query strings. more>>
URI::ParseSearchString is a Perl module that can parse Apache refferer logs and extract search engine query strings.
SYNOPSIS
use URI::ParseSearchString ( parse_search_string );
$string = parse_search_string(http://www.google.com/search?hl=en&q=a+simple+test&btnG=Google+Search) ;
FUNCTIONS
parse_search_string
This module provides a simple function to parse and extract search engine query strings. It was designed and tested having Apache referrer logs in mind. It can be used for a wide number of purposes, including tracking down what keywords people use on popular search engines before they land on a site. It makes use of URI::split to extract the string and URI::Escape to un-escape the encoded characters in it. Although a number of existing modules and scripts exist for this purpose, the majority of them are either outdated using obsolete search strings associated with each engine.
The default function exported is "parse_search_string" which accepts an unquoted referrer string as input and returns the search engine query contained within. It currently works with both escaped and un-escaped queries and will translate the search terms before returning them in the latter case. The function returns undef in all other cases and errors.
for example:
$string = parse_search_string(http://www.google.com/search?hl=en&q=a+simple+test&btnG=Google+Search) ;
would return a simple test
whereas
$string = parse_search_string(http://www.mamma.com/Mamma?utfout=1&qtype=0&query=a+more%21+complex_+search%24?mit=%C2%A0%C2%A0Search%C2%A0%C2%A0) ;
would return a more! complex_ search$
Currently supported search engines include:
- AOL (UK)
- AllTheWeb
- Blueyonder (UK)
- Feedster Blog Search
- Fireball (DE)
- Froogle
- Froogle UK
- Google
- Google Blog Search
- HotBot
- Ice Rocket Blog Search
- Lycos
- Mamma
- Mirago (UK)
- MSN
- Netscape
- Technorati Blog Search
- Tiscali (UK)
- Web.de (DE)
- Yahoo
<<lessSYNOPSIS
use URI::ParseSearchString ( parse_search_string );
$string = parse_search_string(http://www.google.com/search?hl=en&q=a+simple+test&btnG=Google+Search) ;
FUNCTIONS
parse_search_string
This module provides a simple function to parse and extract search engine query strings. It was designed and tested having Apache referrer logs in mind. It can be used for a wide number of purposes, including tracking down what keywords people use on popular search engines before they land on a site. It makes use of URI::split to extract the string and URI::Escape to un-escape the encoded characters in it. Although a number of existing modules and scripts exist for this purpose, the majority of them are either outdated using obsolete search strings associated with each engine.
The default function exported is "parse_search_string" which accepts an unquoted referrer string as input and returns the search engine query contained within. It currently works with both escaped and un-escaped queries and will translate the search terms before returning them in the latter case. The function returns undef in all other cases and errors.
for example:
$string = parse_search_string(http://www.google.com/search?hl=en&q=a+simple+test&btnG=Google+Search) ;
would return a simple test
whereas
$string = parse_search_string(http://www.mamma.com/Mamma?utfout=1&qtype=0&query=a+more%21+complex_+search%24?mit=%C2%A0%C2%A0Search%C2%A0%C2%A0) ;
would return a more! complex_ search$
Currently supported search engines include:
- AOL (UK)
- AllTheWeb
- Blueyonder (UK)
- Feedster Blog Search
- Fireball (DE)
- Froogle
- Froogle UK
- Google Blog Search
- HotBot
- Ice Rocket Blog Search
- Lycos
- Mamma
- Mirago (UK)
- MSN
- Netscape
- Technorati Blog Search
- Tiscali (UK)
- Web.de (DE)
- Yahoo
Download (0.004MB)
Added: 2006-11-28 License: Perl Artistic License Price:
1060 downloads
Ethics Search Protocol 1.87
Ethics Search Protocol in short ESP is an XML-based protocol for search engines. more>>
Ethics Search Protocol in short ESP is an XML-based protocol for search engines that is designed to allow people to express specific ethical requirements when performing searches.
Consumers seldom get the chance to communicate ethical requirements because the proper communication channel does not exist. This project has the goal to offer an open source specification and implementation for that missing communication channel.
Enhancements:
- Changes were made to Category, OrganizationSearchParameters, SearchProfile, and Community.
- PolicyReference complements PolicyStatement.
- EvaluationScheme complements VotingScheme.
- The Envelope type was removed.
- The documentation was improved.
<<lessConsumers seldom get the chance to communicate ethical requirements because the proper communication channel does not exist. This project has the goal to offer an open source specification and implementation for that missing communication channel.
Enhancements:
- Changes were made to Category, OrganizationSearchParameters, SearchProfile, and Community.
- PolicyReference complements PolicyStatement.
- EvaluationScheme complements VotingScheme.
- The Envelope type was removed.
- The documentation was improved.
Download (0.020MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1023 downloads
eSearch 1.1ea1
eSearch provides a Java-based search engine. more>>
eSearch provides a Java-based search engine.
eSearch is a server side Java-based search engine which supplies basic search capabilities for Web use. Its basic capabilities can be extended to include intelligent agents and other expert-system behaviors.
Main features:
- Free and Open Source
- Written in Java, and therefore platform-independent
- Uses Lucene API for Text and Index operation.
- Supplies basic search capabilities comparable to other existing search engines, for both intranet and internet use.
- Allows the basic capabilities to be extended to include intelligent agents and other expert-system behaviours, with the end result of smarter searching than is possible with existing search engines.
- Scaleable to truly mind-boggling dimensions of collections and users.
- Can dynamically index multiple servers and sources simultaneously
- Have a powerful Developer kit that include eSearch TAG Library, Samples & Documentation.
- Powerful Administration Center that let you control all crawl & search operation in your enterprise.
- Extensible architecture. You can plug new component from third party.
- Can be easily integrated with any other Web Applications: i.e. ePortal, eContent, eForum, eFAQ, eHelpDesk.
<<lesseSearch is a server side Java-based search engine which supplies basic search capabilities for Web use. Its basic capabilities can be extended to include intelligent agents and other expert-system behaviors.
Main features:
- Free and Open Source
- Written in Java, and therefore platform-independent
- Uses Lucene API for Text and Index operation.
- Supplies basic search capabilities comparable to other existing search engines, for both intranet and internet use.
- Allows the basic capabilities to be extended to include intelligent agents and other expert-system behaviours, with the end result of smarter searching than is possible with existing search engines.
- Scaleable to truly mind-boggling dimensions of collections and users.
- Can dynamically index multiple servers and sources simultaneously
- Have a powerful Developer kit that include eSearch TAG Library, Samples & Documentation.
- Powerful Administration Center that let you control all crawl & search operation in your enterprise.
- Extensible architecture. You can plug new component from third party.
- Can be easily integrated with any other Web Applications: i.e. ePortal, eContent, eForum, eFAQ, eHelpDesk.
Download (0.20MB)
Added: 2007-02-26 License: The Apache License Price:
971 downloads
Absolut Engine 1.72
Absolut Engine is a news publishing system. more>>
Absolut Engine is a news publishing system. It features three-layer access (admin/chief/editor), article posting, editing, and deleting. Absolut Engine includes a powerful image managing tool, a file manager, and a related articles manager.
Rich text editing is provided via a built-in WYSIWYG editor that produces XHTML 1.0 Strict-compliant code. Absolut Engine is easy to extend via module functionality. The provided modules include Discussions, Surveys, RSS Feed, Search Engine Optimization (static/clean URLs), and a message system for better communication between users.
Absolut Engine produces Web-standards-compliant valid and accessible XHTML 1.0 Strict and CSS semantically-correct code.
<<lessRich text editing is provided via a built-in WYSIWYG editor that produces XHTML 1.0 Strict-compliant code. Absolut Engine is easy to extend via module functionality. The provided modules include Discussions, Surveys, RSS Feed, Search Engine Optimization (static/clean URLs), and a message system for better communication between users.
Absolut Engine produces Web-standards-compliant valid and accessible XHTML 1.0 Strict and CSS semantically-correct code.
Download (0.31MB)
Added: 2006-08-30 License: GPL (GNU General Public License) Price:
1155 downloads
crapsearch 1.1.0
crapsearch project enhances privacy by polling targeted Web search engines with random search terms. more>>
crapsearch project enhances privacy by polling targeted Web search engines with random search terms. It does not flood search engines, but can help disguise your real search habits and prevent the creation of meaningful search logs and user tracking.
It uses local dictionaries, personal favorite lists, and Web news as sources for random search terms. crapsearch also takes a little care to make differentiation from your real browser (and therefore real searches) difficult.
<<lessIt uses local dictionaries, personal favorite lists, and Web news as sources for random search terms. crapsearch also takes a little care to make differentiation from your real browser (and therefore real searches) difficult.
Download (0.010MB)
Added: 2006-08-24 License: Public Domain Price:
1156 downloads
Xapian and Omega 1.0.2
Xapian is an Open Source Probabilistic Information Retrieval library, released under the GPL. more>>
Xapian is an Open Source Probabilistic Information Retrieval library, released under the GPL. Xapian iss written in C++, with bindings to allow use from other languages (Perl, Java, Python, PHP, and TCL are currently supported; Guile and C# are being worked on).
Xapian is designed to be a highly adaptable toolkit to allow developers to easily add advanced indexing and search facilities to their own applications.
If youre after a packaged search engine for your website, you should take a look at Omega, which is an application we supply built upon Xapian. But unlike most other website search solutions, Xapians versatility allows you to extend Omega to meet your needs as they grow.
Main features:
- Free Software/Open Source - licensed under the GPL.
- Highly portable - runs on many Linux, MacOS X, many other Unix platforms, and Microsoft Windows.
- Written in C++. Perl bindings are available in the module Search::Xapian on CPAN. Java JNI bindings are included in the xapian-bindings module. We also support SWIG which can generate bindings for 13 languages. At present those for Python, PHP4, and TCL are working. Guile and C# are being worked on.
- Ranked probablistic search - important words get more weight than unimportant words, so the most relevant documents are more likely to come near the top of the results list.
- Relevance feedback - given one or more documents, Xapian can suggest the most relevant index terms to expand a query, suggest related documents, categorise documents, etc.
- Phrase and proximity searching - users can search for words occuring in an exact phrase or within a specified number of words, either in a specified order, or in any order.
- Full range of structured boolean search operators ("stock NOT market", etc). The results of the boolean search are ranked by the probablistic weights. Boolean filters can also be applied to restrict a probabilistic search.
- Supports stemming of search terms (e.g. a search for "football" would match documents which mention "footballs" or "footballer"). This helps to find relevant documents which might otherwise be missed. Stemmers are currently included for Danish, Dutch, English, Finnish, French, German, Italian, Norwegian, Portuguese, Russian, Spanish, and Swedish.
- Supports database files > 2GB - essential for scaling to large document collections.
- Platform independent data formats - you can build a database on one machine and search it on another.
- Allows simultaneous update and searching. New documents become searchable right away.
As well as the library, we supply a number of small example programs, and a larger application - an indexing and CGI-based application called omega:
- The indexer supplied can index HTML, PHP, PDF, PostScript, and plain text. Adding support for indexing other formats is easy where conversion filters are available (e.g. Microsoft Word). This indexer works using the filing system, but we also provide a script to allow the htdig web crawler to be hooked in, allowing remote sites to be searched using Omega.
- You can also index data from any SQL or other RDBMS supported by the Perl DBI module. That includes MySQL, PostgreSQL, SQLite, Sybase, MS SQL, LDAP, and ODBC.
- CGI search front-end supplied with highly customisable appearance. This can also be customised to output results in XML or CSV, which is useful if you are dynamically generating pages (e.g. with PHP or mod_perl) and just want raw search results which you can process in your own page layout code.
Enhancements:
- This release adds support for spelling correction and synonym expansion.
- Some Btree tables are now optional, so opening a database is slightly quicker.
- The Xapian::NumberValueRangeProcessor class has been reworked to fix a design flaw.
- A few bugs have been fixed.
- Performance was improved in several cases.
<<lessXapian is designed to be a highly adaptable toolkit to allow developers to easily add advanced indexing and search facilities to their own applications.
If youre after a packaged search engine for your website, you should take a look at Omega, which is an application we supply built upon Xapian. But unlike most other website search solutions, Xapians versatility allows you to extend Omega to meet your needs as they grow.
Main features:
- Free Software/Open Source - licensed under the GPL.
- Highly portable - runs on many Linux, MacOS X, many other Unix platforms, and Microsoft Windows.
- Written in C++. Perl bindings are available in the module Search::Xapian on CPAN. Java JNI bindings are included in the xapian-bindings module. We also support SWIG which can generate bindings for 13 languages. At present those for Python, PHP4, and TCL are working. Guile and C# are being worked on.
- Ranked probablistic search - important words get more weight than unimportant words, so the most relevant documents are more likely to come near the top of the results list.
- Relevance feedback - given one or more documents, Xapian can suggest the most relevant index terms to expand a query, suggest related documents, categorise documents, etc.
- Phrase and proximity searching - users can search for words occuring in an exact phrase or within a specified number of words, either in a specified order, or in any order.
- Full range of structured boolean search operators ("stock NOT market", etc). The results of the boolean search are ranked by the probablistic weights. Boolean filters can also be applied to restrict a probabilistic search.
- Supports stemming of search terms (e.g. a search for "football" would match documents which mention "footballs" or "footballer"). This helps to find relevant documents which might otherwise be missed. Stemmers are currently included for Danish, Dutch, English, Finnish, French, German, Italian, Norwegian, Portuguese, Russian, Spanish, and Swedish.
- Supports database files > 2GB - essential for scaling to large document collections.
- Platform independent data formats - you can build a database on one machine and search it on another.
- Allows simultaneous update and searching. New documents become searchable right away.
As well as the library, we supply a number of small example programs, and a larger application - an indexing and CGI-based application called omega:
- The indexer supplied can index HTML, PHP, PDF, PostScript, and plain text. Adding support for indexing other formats is easy where conversion filters are available (e.g. Microsoft Word). This indexer works using the filing system, but we also provide a script to allow the htdig web crawler to be hooked in, allowing remote sites to be searched using Omega.
- You can also index data from any SQL or other RDBMS supported by the Perl DBI module. That includes MySQL, PostgreSQL, SQLite, Sybase, MS SQL, LDAP, and ODBC.
- CGI search front-end supplied with highly customisable appearance. This can also be customised to output results in XML or CSV, which is useful if you are dynamically generating pages (e.g. with PHP or mod_perl) and just want raw search results which you can process in your own page layout code.
Enhancements:
- This release adds support for spelling correction and synonym expansion.
- Some Btree tables are now optional, so opening a database is slightly quicker.
- The Xapian::NumberValueRangeProcessor class has been reworked to fix a design flaw.
- A few bugs have been fixed.
- Performance was improved in several cases.
Download (2.7MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
843 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above michigan search engine marketing search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed