labnotes

Ruby crashes on fly.io

more memory

tags
flyio
ruby

Contents

I had a problem with a ruby 3.3 app segfaulting on fly.io, and the fix was to increase memory size. I put this in the fly.toml:

1
2
3
4
5
[[vm]]
  size = 'shared-cpu-1x'
  memory = '512mb'
  cpu_kind = 'shared'
  cpus = 1

Previously

howto

Using Datasette to map out charger locations

makes it easy to share

tags
datasette
sqlite
flyio

Next

howto

Making a web component by scratch

progressive enhancement

tags
javascript
static_sites
browser