You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to fit a Go FastCGI process into the available RAM that my shared provider allows to be run, I switched the tables to stay on disk as opposed as being loaded to RAM (of course, this obviously means everything gets much slower; it's a trade-off).
To do that, I needed the table.Nothing value to set in the options... which meant importing & compiling the whole table module just to get one tiny little thing. Shouldn't there be a simple way to avoid that?
(of course I can, for now, use the values and not the consts, and thus avoid importing table, but that's A Bad Idea For The Future)