Giter Club home page Giter Club logo

bettereconomy's People

Contributors

a248 avatar superronancraft avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

a248 theawoo

bettereconomy's Issues

Problems with JDBC Usage

  1. Database.java does not close its PreparedStatements and ResultSets. This leads to a resource leak over time. To fix this, the resources should be closed when done, preferably with a try-with-resources block:
try (PreparedStatement stmt = /* ... */; ResultSet rs = stmt.executeQuery()) {
  // do SQL stuff here
} catch (SQLException ex) {
  // handle exception
}
// PreparedStatement and ResultSet are automatically closed
  1. MySQLConnection does not use a proper connection pool, and rather gets or re-initialises a single Connection every time it is acquired.

While this may work most of the time, it has problems. Connection is not always thread safe, and if it is, sharing it across threads is pointless as one will starve the other. Keeping one open for long periods of time will lead to network timeouts.

The best way to solve this is by using connection pooling library, which will handle timeouts appropriately and re-create Connections as needed in a better manner. HikariCP is my go-to and is widely used.

HikariDataSource

How to get the code for HikariDataSource, HikariConfig and so on?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.