in reply to WEB host for Perl/CGI based site
You *might* get away with this in a shared hosting environment if you only need to run it once a day, and you don't mind doing it at 4am. But even then you're quite likely to find your account disabled due to its excessive resource requirements.
This kind of application is really not well suited to a shared hosting setup because you will potentially be bringing hundreds of other websites to a halt while your code runs. You simply can't expect 1 GB of RAM and multiple CPU-minutes in a shared environment.
Here's what I suggest, depending on your needs.
1. If you need to do this processing once a day (or similar)
Why not run the processing on your own machine each day then upload the results to the webserver? Then you can use standard shared hosting. Of course, if the result set is very large this might be problematic too, but most providers will give you more leeway on upload bandwidth than on CPU and memory.
2. If every hit needs to do this processing, and there will be hits throughout the day
You can't use shared hosting. You can't use virtual private servers either. You need to get a dedicated server - a real physical machine with a CPU and memory that are yours and yours alone. Then you can do whatever you want with it. The provider will only care how much bandwidth you use.
This will cost you though - I think the cheapest dedicated servers start around $100/month.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: WEB host for Perl/CGI based site
by vit (Friar) on Jan 16, 2008 at 17:32 UTC | |
by mr_mischief (Monsignor) on Jan 16, 2008 at 20:33 UTC | |
by vit (Friar) on Jan 16, 2008 at 21:31 UTC | |
by hangon (Deacon) on Jan 17, 2008 at 13:34 UTC | |
by mr_mischief (Monsignor) on Jan 17, 2008 at 16:04 UTC |