|
-
Mar 6th, 2006, 12:52 AM
#1
Chatty vs Chunky Interfaces
I have been reading that using Chunky interface is encouraged for scalability, though I haven't read enough discussion regarding this matter to fully comprehend it's value, in your experience guys will you encourage using Chunky over Chatty interface? And may I know your reasons?
I have been using Chatty interface and needs to know if I should switch to Chunky interface now...
Thanks!
-
Mar 6th, 2006, 12:55 PM
#2
Hyperactive Member
Re: Chatty vs Chunky Interfaces
I've never even heard of those terms, can you provide some descriptions and examples?
My monkey wearing the fedora points and laughs at you.
-
Mar 9th, 2006, 09:32 PM
#3
Re: Chatty vs Chunky Interfaces
Depends what you're doing and where the likely bottlenecks are. Chatty means short wait for each operation but lots of operations, so more network overhead. Chunky means fewer operations but long waits for operations to complete, plus increased memory usage in between for the large blocks of data transferred with each operation.
-
Mar 10th, 2006, 12:16 PM
#4
Addicted Member
Re: Chatty vs Chunky Interfaces
also a Chunky interface will tend get out of sync / data will become stale more readily.
-
Mar 22nd, 2006, 04:28 AM
#5
Re: Chatty vs Chunky Interfaces
Is it really possible to absolutely shy away from chatty interfaces? This seem to be a problem of this guy in this thread...
-
Mar 22nd, 2006, 04:40 AM
#6
Addicted Member
Re: Chatty vs Chunky Interfaces
Basically I would say that if you've got fast netw (ie LAN) connection and scalability won't become an issue you could use a chatty interface. But I think part of the reason the phrase was coined was trying to contain & group "transmissions" to and from the server wherever possible rather than send unnecessarily separate "transmissions" and this is appropriate for all applications.
I think that is a distinction from caching (be it in variables or other mechanisms) data on the client side that you should keep in mind.
-
Mar 22nd, 2006, 04:47 AM
#7
Re: Chatty vs Chunky Interfaces
As it has been advised we should refrain from using chatty interfaces but is that really even possible?
-
Mar 22nd, 2006, 06:19 AM
#8
Addicted Member
Re: Chatty vs Chunky Interfaces
Whats the difference between chatting and talking? Its subjective - keep comms to minimum?
-
Mar 22nd, 2006, 08:39 PM
#9
Re: Chatty vs Chunky Interfaces
 Originally Posted by jas4th
Whats the difference between chatting and talking? Its subjective - keep comms to minimum?
Sorry but that doesn't seem to answer my question?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|