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

Page 15 of 15 FirstFirst ... 5789101112131415
Results 211 to 224 of 224
  1. #211
    Chasing 99 Red Balloons Jordan is offline
    MemberRank
    Jan 2008 Join Date
    UKLocation
    1,763Posts
    Quote Originally Posted by TheAJ View Post
    I think you mean going through normal database design procedures of normalization and to eliminate multi-valued dependencies(0NF/UNF to 1NF), partial dependencies (1NF to 2NF), and transitive dependencies (2NF to 3NF/Final).

    Technically, this is just a way to draft a database design, and to get rid of inconsistent and redundant data - but soley does not mean it will improve performance. The typcial relational database (in this case, MySQL, and most likely you are using their default engine "InnoDB") will automatically optimize the query for best performance.

    I quickly scanned through that database design (the link you posted) and you guys are on the right track. A strong, relational and consistent database is the first step. Ofcourse though, you won't be able to finish the whole design at first, as you'll have to add/delete/modify it as you progress with your server

    Good luck!
    I'm aware of the normal forms I was just trying to explain that we would need N (0..X) columns in the table if we weren't doing it this way (which would cause additional overhead on the server side calculating the position and which values are actually being used thus being slower and less flexible). The current design is just to cover the basics of what we plan on implementing and will be expanded as it's currently from the top of our heads.

    Ditched Spring using a generic DAO now instead, easier to implement and mean's i can carry on writing code again :)

    Due to personal issues i haven't got much done this week hopefully i can get something done tomorrow or Sunday.
    Last edited by James; 24-05-12 at 11:55 PM.

  2. #212
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

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

    Are you still on the catalog, or have you finished it?

  3. #213
    Chasing 99 Red Balloons Jordan is offline
    MemberRank
    Jan 2008 Join Date
    UKLocation
    1,763Posts

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

    Quote Originally Posted by Zak© View Post
    Are you still on the catalog, or have you finished it?
    I had started a partial recode to fix a few flawed design decisions i made early during development, those changes are nearly complete so i can migrate the old Message Events and Composers and finish off the Catalog once my issues are resolved.

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

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

    Bomboclat mon, Jordan when you gon give me repo access rude boy? :)

  5. #215
    Chasing 99 Red Balloons Jordan is offline
    MemberRank
    Jan 2008 Join Date
    UKLocation
    1,763Posts

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

    Quote Originally Posted by Moogly View Post
    Bomboclat mon, Jordan when you gon give me repo access rude boy? :)
    Should have access now? git.???:crowley.git if that fails email me.

  6. #216
    Learning C# T09 is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    216Posts

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

    Could you send me the latest revision that was on he public git, the one with catalogue for like 5% implented? And had DOA also implented. I was working on crowley a bit myself but I lost the source, and now it isn't on trhe git anymore I can't download it anymore.

    So yeah... I really need it so could you send it to me please?

  7. #217
    Chasing 99 Red Balloons Jordan is offline
    MemberRank
    Jan 2008 Join Date
    UKLocation
    1,763Posts

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

    Quote Originally Posted by T09 View Post
    Could you send me the latest revision that was on he public git, the one with catalogue for like 5% implented? And had DOA also implented. I was working on crowley a bit myself but I lost the source, and now it isn't on trhe git anymore I can't download it anymore.

    So yeah... I really need it so could you send it to me please?
    I think Kryptos had a mirror of it on his github either that or Moogly.

  8. #218
    Alpha Member Caustik is offline
    MemberRank
    May 2011 Join Date
    LondonLocation
    1,837Posts
    Quote Originally Posted by Jordan View Post
    I think Kryptos had a mirror of it on his github either that or Moogly.
    I have an old mirror on mine. I don't think anyone has a mirror where you implemented DAO though

  9. #219
    prjRev.com Kryptos is offline
    MemberRank
    Feb 2010 Join Date
    Planet EarthLocation
    579Posts

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

    Quote Originally Posted by T09 View Post
    Could you send me the latest revision that was on he public git, the one with catalogue for like 5% implented? And had DOA also implented. I was working on crowley a bit myself but I lost the source, and now it isn't on trhe git anymore I can't download it anymore.

    So yeah... I really need it so could you send it to me please?
    Here you go; https://github.com/Kryptos/Crowley

  10. #220
    Enthusiast JustElmoo is offline
    MemberRank
    Dec 2011 Join Date
    HollandLocation
    33Posts

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

    Thanks Kryptos, just what I searched for.

  11. #221
    Chasing 99 Red Balloons Jordan is offline
    MemberRank
    Jan 2008 Join Date
    UKLocation
    1,763Posts

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

    Got Crowley "2" accepting network connections however Dom has convinced me to switch to "RELEASE63-35668-35665-201108301108"

    [27/05/2012 15:16:53] Dominic Gunn: Woo Woo!
    [27/05/2012 15:16:53] Dominic Gunn: Race ya.

  12. #222
    Chasing 99 Red Balloons Jordan is offline
    MemberRank
    Jan 2008 Join Date
    UKLocation
    1,763Posts

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

    Rewrote the decoder and ClientMessage classes to work with the new protocol :) i'll do the encoder and ServerMessage now!

    Fixed ServerMessage and ClientMessage i'll start on the basics later Login and Messenger are first :)

  13. #223
    Alpha Member Caustik is offline
    MemberRank
    May 2011 Join Date
    LondonLocation
    1,837Posts

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

    Are you planning on using annotations for the hibernate shizzle?

  14. #224
    Chasing 99 Red Balloons Jordan is offline
    MemberRank
    Jan 2008 Join Date
    UKLocation
    1,763Posts

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

    Quote Originally Posted by Caustik View Post
    Are you planning on using annotations for the hibernate shizzle?
    Nope not a fan of JPA



Advertisement