user1411607
user1411607

Reputation:

What 3rd party Search Engine Software/Library are there for Shared hosting

I have been looking for some open source search engine software/library that can be used in shared hosting, I know for sure services like Lucene, Lucene.Net, Sphinx or Xapian cannot be used in shared hosting as they require some installation or restart.

Looking at wikipedia article(see here) I found out these open source search engine solution.

Apache Solr
BaseX
Clusterpoint Server (freeware licence for a single-server)
DataparkSearch
ElasticSearch  (Apache License, Version 2.0)
Ferret
ht://Dig
Hyper Estraier
KinoSearch
Lemur/Indri
Lucene
mnoGoSearch
Sphinx
Swish-e
Xapian

And as I searched around none of them can be used in shared hosting. I think i have to stick with MySQL FULL TEXT Search while i am on shared hosting.

So any suggestion for search engine alternative for shared hosting.

Upvotes: 2

Views: 1673

Answers (4)

romaninsh
romaninsh

Reputation: 10664

ClusterPoint have recently launched a hosted "cloud" service at http://cloud.clusterpoint.com/. As you are going to use shared hosting, you can also a hosted database.

Upvotes: 1

Kaitnieks
Kaitnieks

Reputation: 920

Another option is Findberry (http://www.findberry.com). You can control frequency of automatic indexing and invoke the indexing manually, too. I don't know if it's the right fit for your case but might be worth checking out.

Upvotes: 0

Wil Moore III
Wil Moore III

Reputation: 7214

As long as your host supports PHP 5+, you will be able to use Zend Framework's Lucene implementation. It supports Lucene index format versions 1.4 - 2.3. Since the index is written directly to the filesystem, it should support any host that allows you filesystem access (most do).

Documentation: http://framework.zend.com/manual/en/zend.search.lucene.html

That being said, you could also simply use the MySQL full text search. It isn't without limitations and it isn't the most scalable solution, but you are talking about shared hosting which is generally not the most scalable environment anyhow so I wouldn't worry about it too much given that.

PostgreSQL is also an option and is recommended if you go with a hosting provider such as Heroku (you can do PHP on Heroku).

Further, depending on your search needs, you could simply read up on inverted indexes and roll your own simply implementation.

Finally, I wanted to mention that you didn't actually list out which search features you were interested in.

  • Term Highlighting
  • Term boosting
  • Boolean queries
  • Custom analyzers / tokenizers
  • Faceted browsing
  • etc...

Without listing the features you want, it will always be difficult for someone to make an accurate (and unbiased) recommendation. That being said, you'll likely be fine with the basics.

Upvotes: 2

Raiden
Raiden

Reputation: 484

http://www.google.com/enterprise/search/products_gss.html

http://www.bing.com/community/site_blogs/b/developer/archive/2010/03/22/add-a-bing-search-box-to-your-site-in-3-easy-steps.aspx

http://developer.yahoo.com/search/boss/boss_api_guide/v2_univer_api_args.html#v2_univer_api_query

Have you tried looking at these? They work for public sites that have been indexed properly with search engines.

Another option is to write your own search engine, although that will likely not be as fast as one being handled by one of the big three engines on a shared hosting plan.

Upvotes: 2

Related Questions