Data Cache
Load dashboards fast by saving frequently used queries
1. Install the Quill SDK
If you haven’t already, start by installing the Quill Server SDK on your machine:
2. Create a cache config
To get started with the Quill data cache, you can either bring your own cache or use our built-in cache in Quill Cloud. If you bring your own cache, you’ll need the connection info such as username, password, host, and port.
A typical redis connection string with all of the parts might look something
like this: redis://quill_username:secret_password@example.com:12345
Using Quill Cloud is the easiest way to get started with Quill. Reach out to our team and ask about the Quill data cache to get started.
Make sure to add the Quill server to your database IP whitelist, if you
have one. Requests from Quill will always come from 34.133.137.225
Using Quill Cloud is the easiest way to get started with Quill. Reach out to our team and ask about the Quill data cache to get started.
Make sure to add the Quill server to your database IP whitelist, if you
have one. Requests from Quill will always come from 34.133.137.225
With Self-Hosted Quill, your data never leaves your servers. Our code runs on your machines either in your cloud or on-premise.
We operate the connected cache in a cache-aside manner which gives great performance in read-heavy situations.
3. Pass cache to Quill SDK
Then you’re done! When Quill detects a valid cache configuration it will start using the cache provided to speed up frequently used queries.