Thread: Choosing the Best Networking Solution for a Server Project

Page 9 of 9 FirstFirst ... 789
Results 81 to 85 of 85
  1. #81  
    Registered Member

    Join Date
    Oct 2007
    Posts
    2,413
    Thanks given
    254
    Thanks received
    479
    Rep Power
    2785
    Quote Originally Posted by Graham View Post
    Gnarly, even though it is non-blocking it isn't doing nothing. The vast majority of calls in the Java library are non-blocking but they do actually do stuff
    I didn't say it doesn't do anything. I said it's like it does nothing because the call is so fast and it doesn't block the current thread. The call and operation are faster than a call to push the operation to a queue or new thread (plus all the synchronization needed to keep the design thread safe).
    Reply With Quote  
     

  2. #82  
    Renown Programmer

    Sean's Avatar
    Join Date
    May 2007
    Age
    29
    Posts
    2,758
    Thanks given
    264
    Thanks received
    1,089
    Rep Power
    4393
    gnarly.... srsly now, do you not understand the amount of data sent will effect your single threaded implemention of nio drasticly.... an echo server doesnt send or receive a large amount of data at once for any connection, yet a RSPS is sending and receiving large amounts of data at one time for every connection, your implement will slow down drasticly while netty/mina will not strugle as much.
    Reply With Quote  
     

  3. #83  
    Registered Member

    Join Date
    Oct 2007
    Posts
    2,413
    Thanks given
    254
    Thanks received
    479
    Rep Power
    2785
    Quote Originally Posted by Sean View Post
    gnarly.... srsly now, do you not understand the amount of data sent will effect your single threaded implemention of nio drasticly.... an echo server doesnt send or receive a large amount of data at once for any connection, yet a RSPS is sending and receiving large amounts of data at one time for every connection, your implement will slow down drasticly while netty/mina will not strugle as much.
    If you want to prove that, by all means go for it. Until then, my implementation is faster than Netty.

    /done
    Reply With Quote  
     

  4. #84  
    Renown Programmer

    Sean's Avatar
    Join Date
    May 2007
    Age
    29
    Posts
    2,758
    Thanks given
    264
    Thanks received
    1,089
    Rep Power
    4393
    Quote Originally Posted by Gnarly View Post
    If you want to prove that, by all means go for it. Until then, my implementation is faster than Netty.

    /done
    omfg i give up trying to drill things into that brain of yours with that big ass ego of yours sheilding me.
    Reply With Quote  
     

  5. Thankful users:


  6. #85  
    Banned

    Join Date
    Mar 2008
    Posts
    2,595
    Thanks given
    128
    Thanks received
    191
    Rep Power
    0
    i'm gonna have to go with gnarly on this one, i'm not sure why people on this website overestimate the overhead of everything
    Reply With Quote  
     

  7. Thankful user:


Page 9 of 9 FirstFirst ... 789

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Client/Server Networking
    By Vegito in forum Help
    Replies: 3
    Last Post: 12-19-2010, 02:22 PM
  2. Replies: 0
    Last Post: 11-16-2010, 02:08 PM
  3. Need help choosing VPS !
    By Henkkaah in forum Hosting
    Replies: 6
    Last Post: 08-07-2010, 05:32 AM
  4. Replies: 15
    Last Post: 04-27-2010, 07:35 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •