Page 1 of 1

Multiple files uploading

Posted: 2020-11-08 13:57
by arcanebits
Hi, im making a webapp thats need to upload several Doc, PDF, and Jpeg files. At least they will be around 120 files each day, making around 48Meg per day, and so on. Im not concerned about bandwith nor space, its about how much the LAMP stack + Appgini will be hable to handle those zillions of files overtime.
Any comments? or anyone have done this ? :geek: :ugeek:

Cheers
Arcanebits

Re: Multiple files uploading

Posted: 2020-11-10 00:38
by arcanebits
Any?

Re: Multiple files uploading

Posted: 2020-11-10 01:42
by D Oliveira

Re: Multiple files uploading

Posted: 2020-11-15 14:04
by landinialejandro
arcanebits wrote:
2020-11-08 13:57
Hi, im making a webapp thats need to upload several Doc, PDF, and Jpeg files. At least they will be around 120 files each day, making around 48Meg per day, and so on. Im not concerned about bandwith nor space, its about how much the LAMP stack + Appgini will be hable to handle those zillions of files overtime.
Any comments? or anyone have done this ? :geek: :ugeek:

Cheers
Arcanebits
Hello I am preparing something like what you indicate, I think it will be ready soon!
Greetings!

Re: Multiple files uploading

Posted: 2020-11-15 15:05
by jsetzer
Just my 5 cents: a customer has told me file access may become very slow when having about 10,000 files or more in one (!) directory. So in that project we moved every file into auto-created, grouped subfolders per parent record on upload.

Re: Multiple files uploading

Posted: 2020-11-15 16:19
by landinialejandro
yes correct, the idea is to divide into different folders, I think for example in the name of the table and the id of the record (ex: images / tablename / id). I also understand that the slowest process is to check if there is a file with a duplicate name.

Re: Multiple files uploading

Posted: 2020-11-15 16:24
by jsetzer

Code: Select all

... the idea is to divide into different folders ...
Yes, perfect! That's how we did it in that project.