What's the best way to store text files remotely?

I am creating a document filing system to store text files on my server. I was wondering if anyone has any guidance or advice on the best way to store text files remotely.

The system will be user-based, each user can upload multiple text files. I want the text files to be saved in some way that makes full text search easy.

The server I am using is a standard web server with many scripting languages ​​and MySQL database support.

Thanks for your help!

+1


source to share


1 answer


I would store them in a database and use a full text search in MySQL. Of course, you must have at least MySQL 3.23.23 installed (when full text search support was added).



+1


source







All Articles