1

My web application(http://www.tyro.in) lets users share their Documents like Ms word and pdf openly. Users can search and download the documents uploaded by other users. Currently app use the following technique

When user uploads any file:

It extracts text from document and stores in database. It stores file name as title of that DB record.

When user search for a file:

It matches the query with the stored data present in the Database and shows the results for download

current implemented technique in graphically given at http://www.tyro.in/Tyro.png

Any one suggest me the advancement of my current method

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555

3 Answers3

1

Try this:

http://dev.mysql.com/doc/refman/5.1/en/fulltext-search.html

But I never had time to try.

Philipp Spiess
  • 3,263
  • 4
  • 26
  • 34
0

I'd recommend a short preview of file upon search, to avoid unnecessary downloads - will gain both users and your bandwidth.

regards, /t

Teson
  • 6,644
  • 8
  • 46
  • 69
0

suggestions for searching info:

  1. use full text search in the name and description fields
  2. categorize the documents (by file type, user, info, size)
  3. add info about popular searchs and most downloaded documents
  4. let users rank documents so they can be easily found
  5. let users share documents (via email, social networks)

if i have more ideas, i'll let you know

Raul Leaño Martinet
  • 2,035
  • 6
  • 28
  • 44