Skip to content

Compress hash displace algorithm for faster Julia dictionaries

License

Notifications You must be signed in to change notification settings

Arkoniak/CompressHashDisplace.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CompressHashDisplace

Documentation Build Status
StableDev BuildCoverage

This package creates read-only dictionaries with fast access speed.

Installation

julia> ] add CompressHashDisplace

Usage

using BenchmarkTools
using CompressHashDisplace

DICTIONARY = "/usr/share/dict/words"
dict = Dict{String, Int}()

for (line, word) in enumerate(readlines(DICTIONARY))
    dict[word] = line
end

frozen_dict = FrozenDict(dict)
frozen_dict["hello"] # 50196

frozen_unsafe_dict = FrozenUnsafeDict(dict)
frozen_unsafe_dict["hello"] # 50196

word = "hello"
@btime $dict[$word]               # 76.615 ns (0 allocations: 0 bytes)
@btime $frozen_dict[$word]        # 60.028 ns (0 allocations: 0 bytes)
@btime $frozen_unsafe_dict[$word] # 22.124 ns (0 allocations: 0 bytes)

Main difference between FrozenDict and FrozenUnsafeDict is that FrozenUnsafeDict do not validate input key

frozen_dict["foo"]         # KeyError: key "foo" not found
frozen_unsafe_dice["foo"]  # 59716, i.e. some random value

About

Compress hash displace algorithm for faster Julia dictionaries

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages