Is the name related to Tadej Pogacar?
Show HN: Pogocache – Fast caching software
11–20 of 30 posts
Re: Show HN: Pogocache – Fast caching software
#12Very interesting. Like the idea of using http, redis, or even PostgreSQL clients. Is there a way to provide the auth password via an envar instead of a command line arg? pogocache --auth mypass
That's the only way right now. The other ways I'm considering is with an environment variable and/or acl.
Re: Show HN: Pogocache – Fast caching software
#13Is the name related to Tadej Pogacar?
Re: Show HN: Pogocache – Fast caching software
#14 psql -h localhost -p 9401
=> SET mykey 'my value';
=> GET mykey;
=> DEL mykey;Re: Show HN: Pogocache – Fast caching software
#15Re: Show HN: Pogocache – Fast caching software
#16Is the name related to Tadej Pogacar?
Re: Show HN: Pogocache – Fast caching software
#17Re: Show HN: Pogocache – Fast caching software
#18Congrats on launching! Was following along with the development, glad to see it launched
Re: Show HN: Pogocache – Fast caching software
#19Really looks fascinating.. Might need a deeper dive. Also.. like, it says that you plan on supporting sql? is this true? What does that actually mean really since I guess it might then compete with things like sqlite/duckdb? Genuinely curious, great project! Starred!
Not intending to make pogocache into a sql database. I prefer keeping it a cache. More so exploring ways to work with existing databases such as sqlite, duckdb, postgres. Kinda like providing proxy-ish operations that transparently cache sql reads.
Re: Show HN: Pogocache – Fast caching software
#20Earlier quoted context omitted.
Not intending to make pogocache into a sql database. I prefer keeping it a cache. More so exploring ways to work with existing databases such as sqlite, duckdb, postgres. Kinda like providing proxy-ish operations that transparently cache sql reads.
Reminds me of this dope lib https://pythonhosted.org/johnny-cache/