Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kuende/murmur3
Crystal implementation of Murmur3 hash algorithm used by Cassandra
https://github.com/kuende/murmur3
Last synced: 30 days ago
JSON representation
Crystal implementation of Murmur3 hash algorithm used by Cassandra
- Host: GitHub
- URL: https://github.com/kuende/murmur3
- Owner: kuende
- License: other
- Created: 2016-04-19T21:16:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-05T01:26:09.000Z (over 8 years ago)
- Last Synced: 2024-08-03T17:12:31.252Z (4 months ago)
- Language: Crystal
- Size: 4.88 KB
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-crystal - murmur3 - Implementation of Murmur3 hash algorithm used by Cassandra (Algorithms and Data structures)
README
# Murmur3
Murmur3H1 hash function used by cassandra
## Installation
Add this to your application's `shard.yml`:
```yaml
dependencies:
murmur3:
github: kuende/murmur3
```## Usage
```crystal
require "murmur3"Murmur3.h1("hello, world".bytes)
# Or as string
Murmur3.h1("hello, world")
```## Contributing
1. Fork it ( https://github.com/kuende/murmur3/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request## Contributors
- [@teodor-pripoae](https://github.com/teodor-pripoae) Teodor Pripoae - creator, maintainer