Red Hat DIRECTORY SERVER 7.1 - GATEWAY CUSTOMIZATION Technical Information Seite 151

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 186
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 150
Using the Profiler to Troubleshoot Performance Problems
Part Number 820-2952-10 Page 151
Daemon Threads
Do not be mislead by the seemingly large amount of time spent in a number of Identity Manager’s
daemon threads, such as
ReconTask.WorkerThread.run()
or
TaskThread.WorkerThread.run()
.
Most of this time is spent sleeping, while waiting for events. You must explore these traces to see
how much time is actually spent when they are processing an event.
class A
{
public A()
{
this(0);
}
public A(int i)
{
}
}
and:
class B
{
public static void test()
{
new A();
}
}
The call tree will look like this:
B.test()
-A.<init>(int)
-A.<init>()
Rather than this:
B.test()
-A.<init>()
-A.<init>(int)
Seitenansicht 150
1 2 ... 146 147 148 149 150 151 152 153 154 155 156 ... 185 186

Kommentare zu diesen Handbüchern

Keine Kommentare