Welcome Guest, Not a member yet? Register   Sign In
Creating a cross-platform forum search function
#12

[eluser]drewbee[/eluser]
Yes, it is highly scalable. You have to remember, a database is nothing more then files with data in them, organized for optimization, permissions, users etc.

This is just skipping that part going straight to files.

There are a few limitations based on the operating system. The maximum index size on a 32 bit system is 2 GB (2^31 - 1). This is not a fault of the index, but of the operating system; this is the case for any linux 32 bit system. If you need a bigger index, 64 bit can provide a maximum index (file size) of (2^63 - 1) 8,589,934,592 GB. lol, you should be fine.

It uses segments to store the indexes, and each index can be merged using the optimize() method.

I used it as a spider for one of my test projects, and it worked just fine (including the slow speed of PHP crawling pages, adding and parsing data) etc.

Henry is correct as well. I tend to use lucene for even basic searches (IE tags, blogs, forums etc etc).

The only downside to this is it takes twice as much diskspace (database side and Lucene Index); As I was describing in another thread though, the less I can hit my DB server, the better.


Messages In This Thread
Creating a cross-platform forum search function - by El Forum - 03-19-2009, 06:19 AM
Creating a cross-platform forum search function - by El Forum - 03-19-2009, 09:14 AM
Creating a cross-platform forum search function - by El Forum - 03-19-2009, 10:15 AM
Creating a cross-platform forum search function - by El Forum - 03-19-2009, 12:28 PM
Creating a cross-platform forum search function - by El Forum - 03-19-2009, 01:10 PM
Creating a cross-platform forum search function - by El Forum - 03-19-2009, 01:22 PM
Creating a cross-platform forum search function - by El Forum - 03-19-2009, 01:37 PM
Creating a cross-platform forum search function - by El Forum - 03-19-2009, 03:02 PM
Creating a cross-platform forum search function - by El Forum - 03-20-2009, 08:47 AM
Creating a cross-platform forum search function - by El Forum - 03-20-2009, 09:36 AM
Creating a cross-platform forum search function - by El Forum - 03-20-2009, 09:45 AM
Creating a cross-platform forum search function - by El Forum - 03-20-2009, 10:19 AM
Creating a cross-platform forum search function - by El Forum - 03-20-2009, 10:38 AM
Creating a cross-platform forum search function - by El Forum - 03-20-2009, 10:51 AM
Creating a cross-platform forum search function - by El Forum - 03-20-2009, 11:02 AM
Creating a cross-platform forum search function - by El Forum - 03-21-2009, 09:43 AM
Creating a cross-platform forum search function - by El Forum - 03-23-2009, 05:57 AM
Creating a cross-platform forum search function - by El Forum - 03-23-2009, 01:11 PM
Creating a cross-platform forum search function - by El Forum - 05-28-2009, 07:14 AM
Creating a cross-platform forum search function - by El Forum - 05-29-2009, 09:09 AM



Theme © iAndrew 2016 - Forum software by © MyBB