https://github.com/darren277/local-cache
https://github.com/darren277/local-cache
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/darren277/local-cache
- Owner: darren277
- Created: 2025-02-26T17:03:38.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-26T17:22:36.000Z (3 months ago)
- Last Synced: 2025-02-26T18:28:39.565Z (3 months ago)
- Language: Python
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# local-cache
## About
This project is a caching layer for locally running servers and web applications.
I have several local web applications I serve for myself for things like inventory management, information dashboards, etc. I wanted a way to cache some of the more frequently accessed responses from these applications so that I could serve them faster and not have to wait for the application to generate the response every time I visited the page.
## Structure
This repository contains three subdirectories, each with a different potential solution to this problem.
To summarize:
1. `browser-extensions`: A Firefox browser extension for caching responses from web applications.
2. `nginx-reverse-proxy`: A Docker container running an Nginx reverse proxy with caching enabled.
3. `python-proxy`: A Docker container running a Python proxy server with caching enabled.