You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Examples below demonstrate xxHash32.-- xxHash64 has exactly the same interface-- Calculate the 32-bits hash (default seed is 0).digest.xxhash32(string[, seed])
-- Streaming-- Start a new hash by initializing state with a seed.-- If no value provided, 0 is used as default.xxhash=digest.xxhash32.new([seed])
-- Also it's possible to specify seed manually. If no value-- provided a value initially passed to "new" is used.-- Here and below "seed" expected to be unsigned-- number. Function returns nothing.xxhash:clear([seed])
-- Feed the hash state by calling "update" as many times as-- necessary. Function returns nothing.xxhash:update('string')
-- Produce a hash value.xxhash:result()
veod32
added
server
[area] Task relates to Tarantool's server (core) functionality
reference
[location] Tarantool manual, Reference part
feature
A new functionality
labels
Apr 28, 2021
veod32
changed the title
digest module supports xxHash32/64
[0pt] Describe new digest module function for xxHash32/64
Apr 28, 2021
veod32
changed the title
[0pt] Describe new digest module function for xxHash32/64
[3pt] Describe new digest module function for xxHash32/64
Apr 28, 2021
Describe the new
digest
module function for xxHash32/64Product: Tarantool
Since: 2.9.1
Audience/target: Tarantool users
Root document: https://www.tarantool.io/en/doc/latest/reference/reference_lua/digest/
SME: @olegrok
Peer reviewer: @
Details
Definition of done
digest
module function for xxHash32/64 is described.The text was updated successfully, but these errors were encountered: