Readyset: A MySQL and Postgres wire-compatible caching layer
1–10 of 71 posts
Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#2Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#3Readyset is basically reimplementing a full database, at the absolute bleeding edge of db research, enabling global partial replication of any kind of data.
A solution desperately needed, as databases grow.
You can think of it as an intelligent LRU cache in front of your database. An important step towards fast globally distributed applications.
I hope this project will get more publicity and adoption - it's very well deserved.
Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#4If I have a front end, I would hope that the formated response is what were caching. Be that HTML or JSON.
If I cant read from that cache then I should be reading from fresh data all together? right?
Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#5I dont understand what the use case is for this. If I have a front end, I would hope that the formated response is what were caching. Be that HTML or JSON. If I cant read from that cache then I should be reading from fresh data all together? right?
Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#6I dont understand what the use case is for this. If I have a front end, I would hope that the formated response is what were caching. Be that HTML or JSON. If I cant read from that cache then I should be reading from fresh data all together? right?
Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#7Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#8I dont understand what the use case is for this. If I have a front end, I would hope that the formated response is what were caching. Be that HTML or JSON. If I cant read from that cache then I should be reading from fresh data all together? right?
After an initial query seen by their proxy, you can configure all future queries of the same kind to be pre-computed.
So I think it makes more sense to think of it like an auto-updating materialized view available with the click of a button rather than a cache.
There are some more under-the hood details here: https://docs.readyset.io/concepts/overview#how-does-readyset...
Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#9I dont understand what the use case is for this. If I have a front end, I would hope that the formated response is what were caching. Be that HTML or JSON. If I cant read from that cache then I should be reading from fresh data all together? right?
Re: Readyset: A MySQL and Postgres wire-compatible caching layer
#10But the read side is already fairly trivial to scale with read replicas