Tagged Questions
The network-efficiency tag has no wiki summary.
4
votes
2answers
203 views
Does GWT serialize java.lang.Longs efficiently?
I'm sending object IDs back and forth from client to server through the GWT RPC mechanism. The ids are coming out of the datastore as Longs (8 bytes). I think all of my ids will only need 4 bytes, ...
4
votes
3answers
304 views
Best way to move files of varying sizes across slow network using .NET
I'm building a .NET remoting client/server that will be transmitting thousands of files, of varying sizes (everything from a few bytes to hundreds of MB), and I'd like some feedback on the best method ...
3
votes
2answers
126 views
mapping encoded keys to shorter identifiers in appengine
I want to send unique references to the client so that they client can refer back to specific objects. The encoded keys appengine provides are sometimes 50 bytes long, and I probably only need two or ...
2
votes
5answers
790 views
Network-efficient difference between two strings in Javascript
I have a web application where a client side editor is editing a really really large text which is known on the server side.
The client can make any kind of modifications to this text.
What is the ...
1
vote
7answers
126 views
Is HTML too much text for fast web?
Does anyone know anything about the efficiency of HTML as a transmitted markup language? It seems to me that having closing tags rather than merely a closing curly brace (or just </>) adds a lot ...