Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc: Add storage backend compatibility matrix #461

Merged
merged 2 commits into from
Jan 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add storage backend compatibility matrix
glensc committed Jan 18, 2022
commit aa1eb216c3125a5d780c0dbc2bd78b94452a9c06
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -242,6 +242,31 @@ Some Notes:
health are exposed on `/metrics`. (This currently only works if using PDO for
storage.)

# Compatibility matrix

| Feature | MongoDB | PDO |
|---------------------------------|----------|----------|
| Prometheus exporter | ✗ | ✓ [#305] |
| Searcher::latest() | ✓ | ✓ |
| Searcher::query() | ✓ | ✗ [#384] |
| Searcher::get() | ✓ | ✓ |
| Searcher::getForUrl() | ✓ | ✓ [#436] |
| Searcher::getPercentileForUrl() | ✓ | ✓ [#436] |
| Searcher::getAvgsForUrl() | ✓ | ✗ [#384] |
| Searcher::getAll(sort) | ✓ | ✓ [#436] |
| Searcher::getAll(direction) | ✓ | ✓ [#436] |
| Searcher::delete() | ✓ | ✓ |
| Searcher::truncate() | ✓ | ✓ |
| Searcher::saveWatch() | ✓ | ✓ [#435] |
| Searcher::getAllWatches() | ✓ | ✓ [#435] |
| Searcher::truncateWatches() | ✓ | ✓ [#435] |
| Searcher::stats() | ✗ [#305] | ✓ |

[#305]: https://github.com/perftools/xhgui/pull/305
[#384]: https://github.com/perftools/xhgui/pull/384
[#435]: https://github.com/perftools/xhgui/pull/435
[#436]: https://github.com/perftools/xhgui/pull/436

# Releases / Changelog

See the [releases](https://github.com/perftools/xhgui/releases) for changelogs,