FAQ
General Questions
Section titled “General Questions”What is Glean?
Section titled “What is Glean?”Glean is a smart RSS reader that helps you gather inspiration from the information flood. It supports smart recommendations, bookmark organization, and fully self-hosted data control.
Is Glean free?
Section titled “Is Glean free?”Yes, Glean is open-source software and completely free. You can self-host it and have full control over your data.
Which platforms are supported?
Section titled “Which platforms are supported?”- Web Version: Supports all modern browsers
- Self-Hosted: Uses Docker Compose, supports Linux, macOS, Windows
- Desktop App: Built with Electron, supports major desktop platforms
Feature Questions
Section titled “Feature Questions”Which feed formats are supported?
Section titled “Which feed formats are supported?”Glean supports standard RSS 2.0, RSS 1.0, and Atom formats.
Can I import subscriptions from other RSS readers?
Section titled “Can I import subscriptions from other RSS readers?”Yes, Glean supports standard OPML format import and export. You can migrate from any RSS reader that supports OPML.
How does smart recommendation work?
Section titled “How does smart recommendation work?”Glean uses vector embedding technology to learn your reading preferences:
- When you like or bookmark an article, the system learns your positive preferences
- When you mark dislike, the system learns your negative preferences
- Based on these preferences, the system calculates a preference score for each article
See the Smart Recommendations documentation for details.
What’s the difference between full and lite versions?
Section titled “What’s the difference between full and lite versions?”| Feature | Full | Lite |
|---|---|---|
| RSS subscription management | ✅ | ✅ |
| Article reading | ✅ | ✅ |
| Bookmarks and tags | ✅ | ✅ |
| Smart recommendations | ✅ | ❌ |
| Preference learning | ✅ | ❌ |
| Memory requirement | ~4GB | ~2GB |
Use the lite version if you don’t need smart recommendation features or have limited server resources.
Deployment Questions
Section titled “Deployment Questions”Is self-hosting difficult?
Section titled “Is self-hosting difficult?”If you’re familiar with Docker, deployment takes just a few minutes:
curl -fsSL https://raw.githubusercontent.com/LeslieLeung/glean/main/docker-compose.yml -o docker-compose.ymldocker compose up -dSee the Quick Start documentation for details.
What hardware configuration is needed?
Section titled “What hardware configuration is needed?”Lite Version (without Milvus):
- 2 CPU cores
- 2GB RAM
- 10GB storage
Full Version (with Milvus):
- 4 CPU cores
- 8GB RAM
- 40GB storage
How to update to a new version?
Section titled “How to update to a new version?”docker compose pulldocker compose up -dDatabase migrations run automatically. See the Update Guide for details.
How to backup data?
Section titled “How to backup data?”The PostgreSQL database is the most important data, use:
docker exec glean-postgres pg_dump -U glean glean | gzip > backup.sql.gzSee the Backup & Restore documentation for details.
Privacy and Security
Section titled “Privacy and Security”Where is my data stored?
Section titled “Where is my data stored?”Self-hosted version data is stored entirely on your own server. You have complete control over all data.
Is the Embedding API Key secure?
Section titled “Is the Embedding API Key secure?”Yes, the API Key is configured via environment variables, stored on the server side, and only used to call the Embedding API to generate vectors.
What Embedding provider is used by default?
Section titled “What Embedding provider is used by default?”The default is sentence-transformers (runs locally), no API key required. For better results, you can configure OpenAI or other providers.
Technical Support
Section titled “Technical Support”What if I encounter problems?
Section titled “What if I encounter problems?”- Check the Troubleshooting documentation
- Search for similar issues on GitHub Issues
- Join the Discord Community for help
- If no solution found, submit a new Issue
How to submit feature suggestions?
Section titled “How to submit feature suggestions?”Feel free to submit feature suggestions on GitHub Issues. We carefully consider every suggestion.
Can I contribute code?
Section titled “Can I contribute code?”Absolutely! Glean is an open-source project, and Pull Requests are welcome.