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
62c85978
authored
Sep 09, 2019
by
lancet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fatal mistake in algo fix
parent
00036ba5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
16 deletions
+10
-16
vault/public.go
+9
-0
vault/store.go
+1
-16
No files found.
vault/public.go
View file @
62c85978
...
...
@@ -8,6 +8,9 @@ import (
// GetValue - получить значение ключа из хранилища
func
(
store
*
Store
)
GetValue
(
key
string
)
(
string
,
error
)
{
if
store
.
isInit
==
false
{
store
.
init
()
}
reply
:=
make
(
chan
Message
)
msg
:=
Message
{
Action
:
"GET"
,
Reply
:
reply
,
Key
:
key
}
store
.
exchange
<-
msg
...
...
@@ -20,6 +23,9 @@ func (store *Store) GetValue(key string) (string, error) {
// SetValue - установить/обновить значение ключа
func
(
store
*
Store
)
SetValue
(
key
,
value
string
)
error
{
if
store
.
isInit
==
false
{
store
.
init
()
}
reply
:=
make
(
chan
Message
)
msg
:=
Message
{
Action
:
"SET"
,
Reply
:
reply
,
Key
:
key
,
Value
:
value
}
store
.
exchange
<-
msg
...
...
@@ -32,6 +38,9 @@ func (store *Store) SetValue(key, value string) error {
// DelValue - удалить ключ из хранилища
func
(
store
*
Store
)
DelValue
(
key
string
)
error
{
if
store
.
isInit
==
false
{
store
.
init
()
}
reply
:=
make
(
chan
Message
)
msg
:=
Message
{
Action
:
"DEL"
,
Reply
:
reply
,
Key
:
key
}
store
.
exchange
<-
msg
...
...
vault/store.go
View file @
62c85978
...
...
@@ -16,6 +16,7 @@ func (store *Store) init() {
store
.
ttl
=
store
.
TTL
store
.
exchange
=
make
(
chan
Message
)
store
.
flat
=
make
(
map
[
string
]
*
node
)
store
.
isInit
=
true
// Создаём достаточное количество узлов-филлеров, чтобы механизм
// устаревания не начал уничтожать записи преждевременно.
...
...
@@ -25,14 +26,10 @@ func (store *Store) init() {
}
go
store
.
control
()
// запускаем управление хранилищем
store
.
isInit
=
true
}
// addNode - добавляем новый узел в хвост очереди.
func
(
store
*
Store
)
addNode
(
key
,
value
string
,
kind
bool
)
error
{
if
store
.
isInit
==
false
{
store
.
init
()
}
var
prev
*
node
if
store
.
tail
!=
nil
{
prev
=
store
.
tail
...
...
@@ -54,9 +51,6 @@ func (store *Store) addNode(key, value string, kind bool) error {
// Если ключа ещё нет - просто добавляем в хвост.
// Если ключ есть - переносим в хвост.
func
(
store
*
Store
)
setNode
(
key
,
value
string
)
error
{
if
store
.
isInit
==
false
{
store
.
init
()
}
if
_
,
ok
:=
store
.
flat
[
key
];
ok
==
false
{
store
.
addNode
(
key
,
value
,
true
)
return
nil
...
...
@@ -70,9 +64,6 @@ func (store *Store) setNode(key, value string) error {
// Если Kind == 0 - то возвращаем ошибку.
// При ошибке устаревание приостанавливается на секунду.
func
(
store
*
Store
)
popNode
()
error
{
if
store
.
isInit
==
false
{
store
.
init
()
}
var
err
error
if
store
.
head
==
nil
{
return
errors
.
New
(
"No nodes"
)
...
...
@@ -92,9 +83,6 @@ func (store *Store) popNode() error {
// getNode - получить значение ключа, или ошибку, если такого нет.
func
(
store
*
Store
)
getNode
(
key
string
)
(
string
,
error
)
{
if
store
.
isInit
==
false
{
store
.
init
()
}
if
v
,
ok
:=
store
.
flat
[
key
];
ok
!=
false
{
return
v
.
Value
,
nil
}
...
...
@@ -104,9 +92,6 @@ func (store *Store) getNode(key string) (string, error) {
// delNode - удалить узел с указанным ключом.
// Если такого ключа не было - вернуть ошибку.
func
(
store
*
Store
)
delNode
(
key
string
)
error
{
if
store
.
isInit
==
false
{
store
.
init
()
}
if
_
,
ok
:=
store
.
flat
[
key
];
ok
==
false
{
return
errors
.
New
(
"No such key"
)
}
...
...
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