Count-Min Sketch based memory-efficient key-value structure (using Madoka C++ library)
Project description
madoka
Madoka is an implementation of a Count-Min sketch, a data structure for summarizing data streams.
String-int pairs in a Madoka-Sketch may take less memory than in a standard Python dict.
Based on madoka C++ library.
Installation
$ pip install madoka
Usage
Create a new sketch
>>> import madoka >>> sketch = madoka.Sketch()
madoka.Sketch(width = 0, max_value = 0, path = NULL, flags = 0, seed = 0)
madoka.Sketch() calls create(), so you don’t have to explicitly call create()
Increment a key value
>>> sketch.inc('mami', 6)
inc(key, byte_size)
Add a value to current key value
>>> sketch.add('mami', 6, 3)
add(key, byte_size, value)
The byte_size argument is a range of a value.
Update a key value
>>> sketch.set('mami', 6, 2)
set(key, byte_size, value)
Note that set() does nothing when the given value is not greater than the current key value.
Also note that the new value is saturated when the given value is greater than the upper limit.
Get a key value
>>> sketch.get('mami', 6)
get(key, byte_size)
Save a sketch to a file
>>> sketch.save('example.madoka')
save(filename)
Load a sketch from a file
>>> sketch.save('example.madoka')
save(filename)
Clear a sketch
>>> sketch.clear()
clear()
Delete all key-value pairs.
It differs from create() in maintaining settings.
Initialize a sketch with settings change
>>> sketch.create()
create(width = 0, max_value = 0, path = NULL, flags = 0, seed = 0)
Copy a sketch
>>> sketch.copy(othersketch)
copy(Sketch)
Merge two sketches
>>> sketch.merge(othersketch)
merge(Sketch)
Apply a filter to key value
>>> sketch.filter(lambda x: x**2)
filter(function)
filter() accepts a function (def or lambda) that takes the current value and returns the filtered value.
filter() does nothing if the argument is NULL.
Get inner product of two sketches
>>> sketch.inner_product(othersketch)
inner_product(Sketch)
TODO
Implement a function for dumping all keys.
Contributions are welcome!
License
Wrapper code is licensed under New BSD License.
Bundled madoka C++ library is licensed under the Simplified BSD License.
CHANGES
0.2 (2013-10-13)
Add filter() function. Simplify the step of creating new sketch
0.1 (2013-10-11)
Initial release.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file madoka-0.2.tar.gz
.
File metadata
- Download URL: madoka-0.2.tar.gz
- Upload date:
- Size: 60.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c228be9855bfea68000f5e4fa395e42237cb17492258f6d3f8f284396077fcb |
|
MD5 | b6527511efc68aae73e1ba2ee2a5cbd0 |
|
BLAKE2b-256 | eb835f40eaf54222258e6fcfbaff808a6005b046d169efe8e1ad6ce6ac703bfc |