gotro

package module
v1.4105.455 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 4, 2024 License: MIT Imports: 17 Imported by: 0

README

GotRo

GotRo is abbreviation of Gotong Royong. the meaning in Indonesia: "do it together", "mutual cooperation". This Framework is rewrite of gokil, that previously use httprouter but rewritten using fasthttprouter (W framework, deprecated), latest framework W2 are now using fiber.

Versioning

versioning using this format 1.(M+(YEAR-2021)*12)DD.HMM, so for example v1.213.1549 means it was released at 2021-02-13 15:49

Design Goal

  • As similar as possible to gokil that still used by my old company (2014-now).
  • Opinionated (choose the best dependency), for example by default uses int64 and float64 for values, and uint64 for id(s).
  • 1-letter supporting package so we only need to write a short common function, such as: I.ToS(1234) to convert int64 to string)
    • A - Array
    • B - Boolean
    • C - Character (or Rune)
    • D - Database
    • F - Floating Point
    • L - Logging
    • M - Map
    • I - Integer
    • S - String
    • T - Time (and Date)
    • W - Web (the old "web framework") usable since 2017-03-08 DEPRECATED
    • W2 - Web (the new codegen-based "web-framework") STATUS: usable since 2021-08-30, see W2/internal/example
    • X - Anything (aka any)
    • Z - Z-Template Engine, that has syntax similar to ruby string interpolation #{foo} or any other that javascript friendly {/* foo */}, [/* bar */], /*! bar */
  • Comment and examples on each type and function, so it can be viewed using godoc, something like: godoc github.com/kokizzu/gotro/A

Status

Usable 3rd party database adapter:

  • Ch = Clickhouse (OLAP, have migration tool) -- recommended
  • Es = ElasticSearch (full text search, query only)
  • Ms = Meilisearch (full text search)
  • Pg = PostgreSQL (OLTP, using JSONB)
  • Ql = QLDB (please use better database -_-)
  • Rc = BigCache
  • Rd = Redis works also for KvRocks, KeyDB, etc
  • Tt = Tarantool (OLTP and cache, have migration tool) -- recommended

Other than above, you must use officially provided database adapter from respective vendors. For docker compose example. you can see local-docker-db

Benchmark

Benchmarked using hey -c 255 -n 255000 http://localhost:3001 on i7-4720HQ gotro almost 2x faster than gokil (12K rps vs 23K rps, thanks to fasthttp), this already includes session loading and template rendering (real-life use case, but with template auto-reloading which should be faster on production mode, since unlike in development mode it doesn't stat disk at all).

For newer framework W2 can achieve 20K rps on Ryzen3 3100 without session loading and template rendering (only renders JSON), but with debug logging turned on (development mode), 33K to 144K rps on newer 32-core 128GB RAM NVMe server, see BENCHMARK.md for detailed result.

Usage

go get -u -v github.com/kokizzu/gotro or for Go 1.16+: go mod download github.com/kokizzu/gotro or just import one of the sub-library and run go mod tidy

Contributors

TODO / Bounty

  • add kardios/service for W2
  • fix mysql adapter so it becomes usable (currently copied from Postgres'), probably wait until mysql has indexable json column, or do alters like scylladb and sqlite, or just remove and rewrite one for TiDB
  • rewrite D/Pg using prepared statements, so no more S.Z
  • use nikoksr/notify for notification and mail sending instead of tied to W
  • possibly refactor move cachedquery, records, etc to D package since nothing different about them
  • Review and benchmark which other databases we must support primarily for D, that can be silver bullet for extreme cases (high-write: sharding/partitioning and multi-master replication or auto-failover; full-text-search)
  • Also benchmark search engines (insert, force reindex duration, search substring first/last word foreach dataset, delete first 100 records by id)
  • Add CDC example from TiDB to RedPanda to Materialize.io
  • Pipe all request and respose W2/internal/example to Clickhouse, need to censor all the session key using S.XXH3
  • Create metrics logger on W2/internal/example that push to redpanda then materialize.io
  • Add ephemeral and/or persisted queuing/pub-sub service we're gonna use (NATS -- at most once delivery, RedPanda -- at least once delivery), see hugedbbench
  • Add ExampleXxx function, getting started and more documentation
  • Try other alternate graceful restart (zero downtime deployment): grace or endless instead of just overseer
  • Add Catch NotFound (rewrite the Response.Body) if no route and static file found
  • add Generics support comes up (so we can embed the database connection dependencies inside the context without casting interface)
  • Make sure all D/*/* docker-compose and dockertest works, volumes commented, have note on how to connect client and documentation URL, add from hugedbbench
  • Create NBIO codegen for websocket presentation/transport layer.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
A
B
C
D
Ca
Ch
Co
Es
In
Ma
Mi
Mo
Ms
My
Pg
Ql
Ra
Rd
Rp
Sc
Ss
Ts
Tt
F
I
L
M
S
T
W
X
Z

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL