Skip to content

In-memory persistent key-value storage with support ACID

Notifications You must be signed in to change notification settings

nodermann/tedis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Tedis

In-memory persistent key-value storage with support ACID

SET

tarantool> SET('hello', 'world')

---
- ['hello', 'world', 0]
...

SETEX (SET + EXPIRE)

tarantool> SET('hello', 'world', 500)

---
- ['hello', 'world', 1594732465]
...

GET

tarantool> GET('hello')
---
- world
...

EXPIRE

tarantool> EXPIRE('hello', 300)
---
- ['hello', 'world', 1594732866]
...

TTL

tarantool> TTL('hello')
---
- 250
...

DELETE

tarantool> DEL('hello')
---
- ['hello', 'world', 1594732866]
...

About

In-memory persistent key-value storage with support ACID

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages