Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove link to defunct FishEye app #259

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/webapp/support/articles/openfire_optimization.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ for some big performance improvements.</p>
<p>Most of the String manipulation operations were quickly tracked down to the
core packet classes. More precisely, many user address (JID) objects were
being created each time the methods <tt>Packet.getFrom()</tt> or <tt>Packet.getTo()</tt> were
being called (<a href="http://fisheye.igniterealtime.org/viewrep/svn-org/whack/trunk/source/java/org/xmpp/packet/Packet.java?r1=2659&r2=3140">Packet class diff</a>). Other expensive operations included <tt>JID.toString()</tt> and
<tt>JID.toBareJID()</tt> (<a href="http://fisheye.igniterealtime.org/viewrep/svn-org/whack/trunk/source/java/org/xmpp/packet/JID.java?r1=2618&r2=3150&u=3&ignore=&k=">JID class diff</a>).</p>
being called. Other expensive operations included <tt>JID.toString()</tt> and
<tt>JID.toBareJID()</tt>.</p>

<p>After caching the String representation of the JID and caching the "to" and
"from" JIDs of packets, the profile picture started to look much better.
Expand Down
Loading