Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Application is slow on user's machine
Message
De
12/08/2005 02:56:09
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Problèmes
Versions des environnements
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Database:
Visual FoxPro
Divers
Thread ID:
01040199
Message ID:
01040488
Vues:
21
>My colleague told me, that they replaced the Network card and the performance became much better.
Bottlenecks are wonderful when eliminated <g>
>
>That's a trick, actually. Give the user the worst performance possible at first, then fix it and the users will appreciate the software very much < g >

Yeah: upgrade to vfp9, where you can:
if version(2)=0
  set coverage to "C:\SlowDown.Tmp"
  goTmrPurge = createobject("LogPurge")
endif

define class LogPurge as Timer
   intervall = 60000
   enabled = .t.
   function timer
      set coverage to
      DoEvents
      delete "C:\SlowDown.Tmp"
      set coverage to "C:\SlowDown.Tmp"
enddefine
But seriously, I have a special testing pc where I can test any apps performance with combinations of:
different the cpu frequencies
different ram size
different bus speeds
different harddisk speeds (including laptop disks)
different network speeds
different OS

In case of xCopy deployment I usually can get a matrix of perf differences pinpointing the worst current bottleneck quite fast. It also helps finding the best hardware upgrade for deployment pc's.

regards

thomas
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform