Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
lancet
/
kvcache
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8d11a5e0
authored
Jul 13, 2020
by
Mikhail Sharkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WIP: reverting to timeouts from buckets
parent
9a69a28d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
14 deletions
+13
-14
vault/data.go
+5
-4
vault/public.go
+3
-3
vault/store.go
+5
-7
No files found.
vault/data.go
View file @
8d11a5e0
package
vault
import
"time"
// Message - структура данных для двустороннего обмена с хранилищем,
// запрос/ответ
type
Message
struct
{
...
...
@@ -12,7 +14,7 @@ type Message struct {
// node - узел данных для очереди устаревания
type
node
struct
{
kind
bool
// 0 - таймаут, 1 - данные
expire
time
.
Time
// Окончание срока жизни
Key
string
// Ключ
Value
interface
{}
// Хранимое значение
Prev
*
node
// Ближе к голове, извлекается раньше
...
...
@@ -21,10 +23,9 @@ type node struct {
// Store - корневая структура для хранения данных
type
Store
struct
{
TTL
uint64
// Публично доступный TTL для инициализации
isInit
bool
// Признак выполненной инициализации
TTL
uint64
// Публично доступный TTL по умолчанию для инициализации
exchange
chan
Message
// Небуферизованный канал для синхронизации доступа
ttl
uint64
// Время жизни узла, сек
ttl
uint64
// Время жизни узла
по умолчанию
, сек
head
*
node
// Голова, выходит первым
tail
*
node
// Добавлен последним
flat
map
[
string
]
*
node
// Карта для быстрого доступа к значениям
...
...
vault/public.go
View file @
8d11a5e0
...
...
@@ -8,7 +8,7 @@ import (
// GetValue - получить значение ключа из хранилища
func
(
store
*
Store
)
GetValue
(
key
string
)
(
interface
{},
error
)
{
if
store
.
isInit
==
false
{
if
store
.
ttl
==
0
{
store
.
init
()
}
reply
:=
make
(
chan
Message
)
...
...
@@ -23,7 +23,7 @@ func (store *Store) GetValue(key string) (interface{}, error) {
// SetValue - установить/обновить значение ключа
func
(
store
*
Store
)
SetValue
(
key
string
,
value
interface
{})
error
{
if
store
.
isInit
==
false
{
if
store
.
ttl
==
0
{
store
.
init
()
}
reply
:=
make
(
chan
Message
)
...
...
@@ -38,7 +38,7 @@ func (store *Store) SetValue(key string, value interface{}) error {
// DelValue - удалить ключ из хранилища
func
(
store
*
Store
)
DelValue
(
key
string
)
error
{
if
store
.
isInit
==
false
{
if
store
.
ttl
==
0
{
store
.
init
()
}
reply
:=
make
(
chan
Message
)
...
...
vault/store.go
View file @
8d11a5e0
...
...
@@ -2,11 +2,12 @@ package vault
import
(
"errors"
"time"
)
// init - инициализация хранилища с заданным TTL
func
(
store
*
Store
)
init
()
{
if
store
.
isInit
==
true
{
if
store
.
ttl
!=
0
{
return
}
if
store
.
TTL
<
1
{
...
...
@@ -16,7 +17,6 @@ func (store *Store) init() {
store
.
ttl
=
store
.
TTL
store
.
exchange
=
make
(
chan
Message
)
store
.
flat
=
make
(
map
[
string
]
*
node
)
store
.
isInit
=
true
// Создаём достаточное количество узлов-филлеров, чтобы механизм
// устаревания не начал уничтожать записи преждевременно.
...
...
@@ -29,21 +29,19 @@ func (store *Store) init() {
}
// addNode - добавляем новый узел в хвост очереди.
func
(
store
*
Store
)
addNode
(
key
string
,
value
interface
{},
kind
bool
)
error
{
func
(
store
*
Store
)
addNode
(
key
string
,
value
interface
{},
expire
time
.
Time
)
error
{
var
prev
*
node
if
store
.
tail
!=
nil
{
prev
=
store
.
tail
}
store
.
tail
=
&
node
{
Key
:
key
,
Value
:
value
,
Prev
:
prev
,
kind
:
kind
}
store
.
tail
=
&
node
{
Key
:
key
,
Value
:
value
,
Prev
:
prev
,
expire
:
expire
}
if
store
.
head
==
nil
{
store
.
head
=
store
.
tail
}
if
prev
!=
nil
{
prev
.
Next
=
store
.
tail
}
if
kind
==
true
{
store
.
flat
[
key
]
=
store
.
tail
}
return
nil
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment