Results 1 to 9 of 9

Thread: Chatty vs Chunky Interfaces

  1. #1

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Lightbulb 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!
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  2. #2
    Hyperactive Member Arrow_Raider's Avatar
    Join Date
    Dec 2001
    Location
    AVR Lovers Club
    Posts
    423

    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.

  3. #3
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    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.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  4. #4
    Addicted Member
    Join Date
    Dec 2002
    Posts
    175

    Re: Chatty vs Chunky Interfaces

    also a Chunky interface will tend get out of sync / data will become stale more readily.

  5. #5

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    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...
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  6. #6
    Addicted Member
    Join Date
    Dec 2002
    Posts
    175

    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.

  7. #7

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Chatty vs Chunky Interfaces

    As it has been advised we should refrain from using chatty interfaces but is that really even possible?
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  8. #8
    Addicted Member
    Join Date
    Dec 2002
    Posts
    175

    Re: Chatty vs Chunky Interfaces

    Whats the difference between chatting and talking? Its subjective - keep comms to minimum?

  9. #9

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Chatty vs Chunky Interfaces

    Quote 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?
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width