-
Notifications
You must be signed in to change notification settings - Fork 7.9k
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
Fix insecure links #862
Fix insecure links #862
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I checked all of these URLs. The change to the SHA-1 hash input should be reverted.
Looks good to me. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thank you for your contributions!
We'll submit a change based on this PR to the internal repository. Your PR will be merged when the change is published.
@@ -83,7 +83,7 @@ <h1>LevelDB Benchmarks</h1> | |||
<p>Google, July 2011</p> | |||
<hr> | |||
|
|||
<p>In order to test LevelDB's performance, we benchmark it against other well-established database implementations. We compare LevelDB (revision 39) against <a href="http://www.sqlite.org/">SQLite3</a> (version 3.7.6.3) and <a href="http://fallabs.com/kyotocabinet/spex.html">Kyoto Cabinet's</a> (version 1.2.67) TreeDB (a B+Tree based key-value store). We would like to acknowledge Scott Hess and Mikio Hirabayashi for their suggestions and contributions to the SQLite3 and Kyoto Cabinet benchmarks, respectively.</p> | |||
<p>In order to test LevelDB's performance, we benchmark it against other well-established database implementations. We compare LevelDB (revision 39) against <a href="https://www.sqlite.org/">SQLite3</a> (version 3.7.6.3) and <a href="https://dbmx.net/kyotocabinet/spex.html">Kyoto Cabinet's</a> (version 1.2.67) TreeDB (a B+Tree based key-value store). We would like to acknowledge Scott Hess and Mikio Hirabayashi for their suggestions and contributions to the SQLite3 and Kyoto Cabinet benchmarks, respectively.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verified that http://fallabs.com/kyotocabinet/spex.html
redirects to https://dbmx.net/kyotocabinet/spex.html
.
@@ -1,7 +1,7 @@ | |||
## Files | |||
|
|||
The implementation of leveldb is similar in spirit to the representation of a | |||
single [Bigtable tablet (section 5.3)](http://research.google.com/archive/bigtable.html). | |||
single [Bigtable tablet (section 5.3)](https://research.google/pubs/pub27898/). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verified that http://research.google.com/archive/bigtable.html
redirects to https://research.google/pubs/pub27898/
.
No description provided.