Boot.dev Blog ยป Golang ยป Announcing Go-TinyTime, Go-TinyDate's Sister Package

Announcing Go-TinyTime, Go-TinyDate's Sister Package

By Lane Wagner on Apr 2, 2020

Curated backend podcasts, videos and articles. All free.

Want to improve your backend development skills? Subscribe to get a copy of The Boot.dev Beat in your inbox each month. It's a newsletter packed with the best content for new backend devs.

time.Time is the perfect choice for handling times in Go in most cases, it even comes in the standard library! The problem is that the time.Time{} struct uses more than 24 bytes of memory under most conditions. Go-TinyTime solves this problem by restricting the available dates to the range between 1970 - 2106, and only supporting UTC timezones. This brings data usage down to just 4 bytes of memory.

Go-TinyDate is its sister package that allows for a much larger date range but doesn’t get more than day precision. Between time.Time, go-tinydate, and go-tinytime all of our time problems can be solved using the same API.

Don’t forget to โญ the GitHub

How Does It Work? ๐Ÿ”—

A normal time.Time object takes at least 16 bytes of memory:

type Time struct {
	wall uint64 // 8 bytes
	ext  int64 // b bytes
	loc *Location // 8 bytes if not nil, plus location memory
}

If there is a location set (which there usually is), then this can be higher, usually about 24 bytes.

TinyTime, on the other hand, uses only 4 bytes.

type TinyTime struct {
	unix uint32
}

We sacrifice timezones and dates older than the unix epoch of 1970, but if these are acceptable tradeoffs, we can save a lot of memory.

When Should It Be Used? ๐Ÿ”—

As the TinyTime Readme states, if you aren’t hurting for resources, better to stick with the standard time.Time. The following situations can be good reasons to use to TinyTime:

  • You are working in embedded systems and every byte counts
  • You are working on a system that stores thousands of dates, and reducing memory costs by >75% is significant
  • If you are sure you will never need more than second precision
  • Or you know you will never need timezones other than UTC

API ๐Ÿ”—

The tinytime.TinyTime API largely mirrors that of time.Time. The only methods missing are the ones that make no sense without timezone support. You can swap out the vast majority without any changes. Check out the godoc for reference.

TinyDate ๐Ÿ”—

If you need a larger date range, be sure to check out the intro to Go-TinyDate.

tiny fragile box

Find a problem with this article?

Report an issue on GitHub