12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import PostgresKit
- import Vapor
- var env = try Environment.detect()
- try LoggingSystem.bootstrap(from: &env)
- let app = Application(env)
- defer { app.shutdown() }
- app.http.server.configuration.serverName = "Vapor"
- app.logger.notice("💧 VAPOR")
- app.logger.notice("System.coreCount: \(System.coreCount)")
- app.logger.notice("System.maxConnectionsPerEventLoop: \(System.maxConnectionsPerEventLoop)")
- let pools = EventLoopGroupConnectionPool(
- source: PostgresConnectionSource(configuration: .init(
- hostname: "tfb-database",
- username: "benchmarkdbuser",
- password: "benchmarkdbpass",
- database: "hello_world"
- )),
- maxConnectionsPerEventLoop: System.maxConnectionsPerEventLoop,
- on: app.eventLoopGroup
- )
- extension Request {
- func db(_ pools: EventLoopGroupConnectionPool<PostgresConnectionSource>) -> PostgresDatabase {
- pools.pool(for: self.eventLoop).database(logger: self.logger)
- }
- }
- app.get("db") { req async throws -> World in
- let rows = try await req.db(pools).query("SELECT id, randomnumber FROM World WHERE id = $1", [
- PostgresData(int32: .random(in: 1...10_000))]).get()
-
- if (rows.count == 0) {
- throw Abort(.notFound)
- }
- let world = World(
- id: rows[0].column("id")?.int32 ?? 0,
- randomnumber: rows[0].column("randomnumber")?.int ?? 0
- )
- return world
- }
- app.get("queries") { req async throws -> [World] in
- let queries = (req.query["queries"] ?? 1).bounded(to: 1...500)
- var worlds: [World] = []
- for _ in queries {
- let rows = try await req.db(pools).query("SELECT id, randomnumber FROM World WHERE id = $1", [
- PostgresData(int32: .random(in: 1...10_000))]).get()
-
- if (rows.count == 0) {
- throw Abort(.notFound)
- }
- let world = World(
- id: rows[0].column("id")?.int32 ?? 0,
- randomnumber: rows[0].column("randomnumber")?.int ?? 0
- )
- worlds.append(world)
- }
- return worlds
- }
- extension Int: Sequence {
- public func makeIterator() -> CountableRange<Int>.Iterator {
- return (0..<self).makeIterator()
- }
- }
- try app.run()
|