Guyren Howe

Results 33 comments of Guyren Howe
trafficstars

use_output_inserted appears nowhere on that page. On Aug 6, 2021, 15:23 -0700, Wanderson Policarpo ***@***.***>, wrote: > There's already something in the README explaining why you might need to turn...

It sounds like this work is just about done. Why is this issue still open?

I have this problem and none of the above has helped. ``` % gem install tiny_tds -- --with-freetds-include=/opt/homebrew/include --with-freetds-lib=/opt/homebrew/lib Building native extensions with: '--with-freetds-include=/opt/homebrew/include --with-freetds-lib=/opt/homebrew/lib' This could take a while......

Yes. On Jun 25, 2021, 10:08 -0700, Pedro Saratscheff ***@***.***>, wrote: > > /gisborne > Did you run brew install freetds before that? > — > You are receiving this...

FYI SQLite [works just fine on a server](https://blog.expensify.com/2018/01/08/scaling-sqlite-to-4m-qps-on-a-single-server/), . So you might want to explore support for [BedrockDB](https://bedrockdb.com). Presumably, it would be fairly easy. Although I’m pretty excited about Postgres...

Just offering some advice: SQLite is absolutely suitable for a lot of quite heavy-use sites. Expensify even built a [traditional database server](https://bedrockdb.com) based on SQLite, supporting redundancy and failover and...

Expensify is a very popular, heavy-use app, and it has scaled just fine with SQLite. SQLite can handle just about any load; it's a question of whether its other features...

I also would like this. Let me offer a concrete use case: namespaces that support nesting and differ in storage methods (in-memory; local sqlite; remote api; …). So they all...

I’m usually a Ruby dev. I was thinking in terms of classes as objects — if I pass a class into somewhere, I want to specify its behavior. But I...