![]() |
|
Welcome to the Computer Webmaster Gaming Console Graphics Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
| |||||||
| PHP PHP for some can be one of the hardest website programming codes, so do you need help on your PHP script, if it is php4, php5 or lower this is the place for you for any PHP help. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 | ||
| I have a php script which is resizing some images. To get this to run I have has to increase the memory allocation via php.ini. This all works fine and there are no problems. My client is totally convinced that this is going to cause issues with "processing power" on the server. I have been asked to log memory usage before and after my code is executed to confirm that there are no memory leaks. I really don't want to have to do this bit of work. What are your opinions ? Should I or is there something you suggest I say to convince her that upping the memory allocation is perfectly safe ? | |||
|
| Advertisements |
| | #2 | ||
| Zoe Brown wrote: > I have a php script which is resizing some images. To get this to run I have > has to increase the memory allocation via php.ini. This all works fine and > there are no problems. > > My client is totally convinced that this is going to cause issues with > "processing power" on the server. I have been asked to log memory usage > before and after my code is executed to confirm that there are no memory > leaks. Much depends on what OS you are using, say Linux which caches everything (and releases those caches when needed), if measuring the memory usage with the wrong tool, then it will look like you have a memory leak. If the script uses gd built into PHP, it won't make any difference, if there is a leak, then there is a leak in the PHP itself., in which case they should upgrade to the latest stable version. -- //Aho | |||
|
| | #3 | ||
| On May 15, 5:15 pm, "Zoe Brown" <zoenaomibr...@N-O-S-P-A-A-Mtesco.net> wrote: > I have a php script which is resizing some images. To get this to run I have > has to increase the memory allocation via php.ini. This all works fine and > there are no problems. > > My client is totally convinced that this is going to cause issues with > "processing power" on the server. I have been asked to log memory usage > before and after my code is executed to confirm that there are no memory > leaks. > > I really don't want to have to do this bit of work. What are your opinions > ? Should I or is there something you suggest I say to convince her that > upping the memory allocation is perfectly safe ? Be firm, say she employed you to do the job because you have the ability to do it, and that she should trust your judgment and not worry about the details which you have the time to research and the ability to see through. You have to be trusted to prioritise your work, and doing uneccessary pieces of work will hamper you in those priorities, as you only have a certain amount of time, something has to give somewhere. Maybe give her an anology to help her understand, do you or anyone in your office use 2 monitors oe does she have a bigger desk than everyone else. Having more real estate does mean that there is less space to move about the room, but the job of using the computer, or storing piles of work on the desk is made easier by larger space, provided the space is not close to being used up, this doesnt impact on anyone else. So provided you can show her the free memory is enough when using ALL of the php.ini value, her point is irrelevant. You dont need to log anything, just take a worst case scenario and show it makes sense, which I am sure you have thought about. | |||
|
| | #4 | ||
| > If the script uses gd built into PHP, it won't make any difference, if > there > is a leak, then there is a leak in the PHP itself., in which case they > should > upgrade to the latest stable version. I am using imagecreatefromjpeg() (and all the other simular methods) but to be honest I cant work out *what* it is. I am a bit new to php, and not sure if it is a method for GD or imagemagick or something else ! I do know that it is working just fine though. | |||
|
| | #5 | ||
| Zoe Brown wrote: >> If the script uses gd built into PHP, it won't make any difference, if >> there >> is a leak, then there is a leak in the PHP itself., in which case they >> should >> upgrade to the latest stable version. > > I am using imagecreatefromjpeg() (and all the other simular methods) but to > be honest I cant work out *what* it is. I am a bit new to php, and not sure > if it is a method for GD or imagemagick or something else ! I do know that > it is working just fine though. The graphics functions in PHP is from gd, usually the built in version. You can use imagemagick from PHP, but then you use it via the exec() function. IMHO you get better control when using gd than using imagemagick (which I'm forced to use at work, as the person who made the system we use from the beginning didn't know hot to get gd to work in PHP). -- //Aho | |||
|
| Featured Websites | ||||
|
![]() |
| Tags: allocation, memory, php |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| GD CPU/memory requirements | flamer die.spam@hotmail.com | PHP | 0 | 05-20-2007 5:33 PM |
| Earliest Memory | frike | The Games | 5 | 07-05-2006 11:45 AM |
| Featured Websites | ||||
|