Multiple files uploading

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
arcanebits
Veteran Member
Posts: 104
Joined: 2018-12-10 21:52

Multiple files uploading

Post by arcanebits » 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

arcanebits
Veteran Member
Posts: 104
Joined: 2018-12-10 21:52

Re: Multiple files uploading

Post by arcanebits » 2020-11-10 00:38

Any?

User avatar
D Oliveira
AppGini Super Hero
AppGini Super Hero
Posts: 347
Joined: 2018-03-04 09:30
Location: David

Re: Multiple files uploading

Post by D Oliveira » 2020-11-10 01:42


User avatar
landinialejandro
AppGini Super Hero
AppGini Super Hero
Posts: 126
Joined: 2016-03-06 00:59
Location: Argentina
Contact:

Re: Multiple files uploading

Post by landinialejandro » 2020-11-15 14:04

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!
Alejandro.
AppGini 5.98 - Linux OpenSuse Tumblewweed.

Some of my posts that may interest you:
:arrow: Landini Admin Template: Template for Appgini like AdminLTE
:arrow: Profile image plugin: add and changue image user profile
:arrow: Field editor in table view: Configurable fast edit fields in TV
:idea: my personal page

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1807
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: Multiple files uploading

Post by jsetzer » 2020-11-15 15:05

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.
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

User avatar
landinialejandro
AppGini Super Hero
AppGini Super Hero
Posts: 126
Joined: 2016-03-06 00:59
Location: Argentina
Contact:

Re: Multiple files uploading

Post by landinialejandro » 2020-11-15 16:19

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.
Alejandro.
AppGini 5.98 - Linux OpenSuse Tumblewweed.

Some of my posts that may interest you:
:arrow: Landini Admin Template: Template for Appgini like AdminLTE
:arrow: Profile image plugin: add and changue image user profile
:arrow: Field editor in table view: Configurable fast edit fields in TV
:idea: my personal page

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1807
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: Multiple files uploading

Post by jsetzer » 2020-11-15 16:24

Code: Select all

... the idea is to divide into different folders ...
Yes, perfect! That's how we did it in that project.
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

Post Reply