Bugs item #3497489, was opened at 2012-03-06 03:02 Message generated for change (Comment added) made by franzzieris You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=843359&aid=3497489&group_id=167540
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Performance Group: None Status: Open Resolution: None >Priority: 5 Private: No Submitted By: Stefan Rossbach (kargor) Assigned to: Nobody/Anonymous (nobody) Summary: Saros uses to much network bandwidth Initial Comment: TransferDescription has an avarage overhead of approx. 300 bytes Instead of hashing the SPATH path the full path is transmitted. This can result in over 1 KB of data being send over the wire for just a single character that was entered in an open editor. Again instead of using the session ID (why is that a long and not an int ? Is 2^32 not unique enough ?), the long value is converted to a string. Instead of sending 8 (4) bytes, this may take up to 20 bytes. As Java Strings are UTF-16 encoded, this can take up to 40 bytes. Same applies for all other strings (depends on how XStream is serializing this stuff). We should use numbers as numbers and not their string representation. This is not acceptable for IBB connections ! ---------------------------------------------------------------------- >Comment By: Franz Zieris (franzzieris) Date: 2012-05-23 08:46 Message: (same argumentation as for #3494852) I lowered the priority from 8 to 5 since this behavior (as unpleasing it might be in the eyes of a theoretical computer scientist) does not affect the consistency of the transmitted data or the user experience in general. I believe a "5 - Medium" priority is still too generous for this bug. But since we're currently lacking usable heuristics to categorize different types of observable failures, a "5" should be a reasonable tradeoff. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=843359&aid=3497489&group_id=167540 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Dpp-robot mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dpp-robot
