Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

Page 5 of 15 FirstFirst 12345678910111213 ... LastLast
Results 61 to 75 of 224
  1. #61
    The Legend Returns vista4life is offline
    MemberRank
    Mar 2007 Join Date
    The NetherlandsLocation
    843Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    i really look forward to this server.

    Goodluck with this project hope you race your own roads :P

  2. #62
    Lurking since '06 1ntel is offline
    MemberRank
    Jul 2006 Join Date
    401Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    https://github.com/CrowleyCrossroads...neFactory.java

    You need add Executor to your pipeline or you block the worker thread which is not good. Check out Netty OrderedMemoryAwareThreadPoolExecutor

  3. #63
    Member Crossroads is offline
    MemberRank
    Dec 2011 Join Date
    59Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Just pushed the latest code to Github, username's are now validated using a regex and "{MOD,ADM,SOS}-" are blocked in usernames (i'll test if the name is in use at some point). Passwords are also validated >5 chars and 10< and you must use numbers. Email validation is implemented using a regex but the client doesn't seem to like the message *shrug*

  4. #64
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Quote Originally Posted by Crossroads View Post
    Email validation is implemented using a regex but the client doesn't seem to like the message *shrug*
    Why not just send it through a method, if it contains a "@" and a valid website organisation extension? :D

  5. #65
    Member Crossroads is offline
    MemberRank
    Dec 2011 Join Date
    59Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Quote Originally Posted by Quackster View Post
    Why not just send it through a method, if it contains a "@" and a valid website organisation extension? :D
    How would that change the clients acceptance of the message? Its just a Boolean response... And I would rather use a regex that conforms to the RFC specification so that all TLDs are supported.

  6. #66
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Any updates? Looks really promising :D

  7. #67
    Member Crossroads is offline
    MemberRank
    Dec 2011 Join Date
    59Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Pushed to GitHub, user names are now checked against the database to see of it is in use. I'm aware it currently blOcks the event thread I'll move it to a threadpool at some point.

  8. #68
    Member Crossroads is offline
    MemberRank
    Dec 2011 Join Date
    59Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Moved database logic into an ExecutorService so it doesn't block the event thread an I'm goin to move all OutgoingMessages into a similar format.

  9. #69
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Three days since last update. Any more?

  10. #70
    Member Crossroads is offline
    MemberRank
    Dec 2011 Join Date
    59Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Fixed an issue with logging, that caused massive logfiles to be generated still trying to get the ParentalConsent message to work though and the Encoder now displays the correct session ID for outgoing messages.

    Tried to bypass the ParentalConsent message by sending the response early inside the EmailValidator (CY1\01) however it doesn't seem to work.

  11. #71
    Alpha Member Moogly is offline
    MemberRank
    Feb 2008 Join Date
    Pool LidoLocation
    2,322Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    I've noticed some of the issues that he's having I've sent him a message on Skype, preparing for college now, whenever he logs in he should get em ;p

  12. #72
    Lurking since '06 1ntel is offline
    MemberRank
    Jul 2006 Join Date
    401Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Quote Originally Posted by Crossroads View Post
    Moved database logic into an ExecutorService so it doesn't block the event thread an I'm goin to move all OutgoingMessages into a similar format.
    Outgoing messages will run on the same thread that processed the incoming using the Executor thread provided in the Netty Pipeline. That is of course if you are sending back the response in the Message.

    You will just be passing from one thread to another, which has its good and bads, but it isn't really necessary.

    Id say experiment and see whats best.

    Good job btw

  13. #73
    Member Crossroads is offline
    MemberRank
    Dec 2011 Join Date
    59Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    I've been busy the last few days, i should be able to work on this again early next week i'm currently busy with work.

  14. #74
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    It's a shame this project is so under rated. Looks awesome.

  15. #75
    hi i'm robbie Roper is offline
    MemberRank
    Oct 2008 Join Date
    /home/roperLocation
    2,283Posts

    re: Crowley - r63 - Java - Hibernate/BoneCP (MySQL)

    Sounds awesome, good luck!



Advertisement