Ask a Question related to PHP Development, Design and Development.
-
Cameron #1
Overhead of objects
I'm wondering what the overhead is when creating objects, the project
I'm currently working on would require many object creations, and I need
to figure out if it's best to use functions or to use classes so what I
want to know is when doing
$foo = new bar;
how much impact would this have on the system if used on a large scale
with lots of objects possibly multiple instances of each in memory at
one time.
~Cameron
Cameron Guest
-
Zoom effect on a overhead map
As part of a prototype for a mobile city guide I am trying to implement a zoom in map, whereby portions of a map can be selected and zoomed in on. ... -
[PHP] mySQL overhead: Tweaking Scripts for Speed
check this out dan It may help http://www.mysql.com/doc/en/EXPLAIN.html ----- Original Message ----- From: "Dan Anderson"... -
Does Option Strict On add overhead?
By turning Option Strict on, is there extra overhead? For example w/o it on the following doesnt get flagged: validxhtml.Attributes.Add("height",... -
Imports ANYnamespace.anyClass (overhead??)
Importing a namespace, is simply shorthand, so you don't have to type the fully qualified name of the class every time. I believe it is only used at... -
Include Files and Overhead
I have a medium sized ecommerce website which I have written using PHP and MySQL and I have a number of include files with some of them being... -
Tim Van Wassenhove #2
Re: Overhead of objects
On 2004-01-24, Cameron <foo@bar.invalid> wrote:
Or you are a troll, or you are too lazy to use the search groups at> I'm wondering what the overhead is when creating objects, the project
> I'm currently working on would require many object creations, and I need
> to figure out if it's best to use functions or to use classes so what I
> want to know is when doing
>
> $foo = new bar;
>
> how much impact would this have on the system if used on a large scale
> with lots of objects possibly multiple instances of each in memory at
> one time.
google.com to find recent discussions on this topic.
(Anyway, i think your script would have much more important bottlenecks
than the (not) usage of classes.)
--
[url]http://home.mysth.be/~timvw[/url]
Tim Van Wassenhove Guest
-
Cameron #3
Re: Overhead of objects
Tim Van Wassenhove wrote:
Is that your way of saying you don't know?> On 2004-01-24, Cameron <foo@bar.invalid> wrote:
>>>>I'm wondering what the overhead is when creating objects, the project
>>I'm currently working on would require many object creations, and I need
>>to figure out if it's best to use functions or to use classes so what I
>>want to know is when doing
>>
>>$foo = new bar;
>>
>>how much impact would this have on the system if used on a large scale
>>with lots of objects possibly multiple instances of each in memory at
>>one time.
>
> Or you are a troll, or you are too lazy to use the search groups at
> google.com to find recent discussions on this topic.
>
> (Anyway, i think your script would have much more important bottlenecks
> than the (not) usage of classes.)
>
~Cameron
Cameron Guest



Reply With Quote

