Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
MKCLOS
Core Development Platform
corepkgv2
Commits
d40a4aa9
Commit
d40a4aa9
authored
3 years ago
by
Shivprakash Bapat
Browse files
Options
Downloads
Patches
Plain Diff
added loggers
parent
223d1b85
Branches
redis_cache_lock_implementation
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sessionmanagermdl/sessionmanager.go
+2
-0
sessionmanagermdl/sessionmanager.go
v2/sessionmanagermdl/sessionmanager.go
+2
-2
v2/sessionmanagermdl/sessionmanager.go
with
4 additions
and
2 deletions
sessionmanagermdl/sessionmanager.go
+
2
−
0
View file @
d40a4aa9
...
...
@@ -8,6 +8,7 @@ import (
"github.com/tidwall/sjson"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/cachemdl"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/loggermdl"
)
// Entry is a data to be stored against a key.
...
...
@@ -119,6 +120,7 @@ func RetrieveAll() map[string]interface{} {
// RetrieveAndExtend returns the entry and extends the entry expiration by provided `SECONDS`, only if remaining time < extendBy.
// If extendBy < 0, it is same as Retrieve function.
func
RetrieveAndExtend
(
key
string
,
extendBy
int64
)
(
Entry
,
error
)
{
loggermdl
.
LogError
(
"*** RetrieveAndExtend ******** key: "
,
key
)
entry
,
err
:=
Retrieve
(
key
)
if
err
!=
nil
{
return
Entry
{},
err
...
...
This diff is collapsed.
Click to expand it.
v2/sessionmanagermdl/sessionmanager.go
+
2
−
2
View file @
d40a4aa9
...
...
@@ -7,8 +7,8 @@ import (
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/loggermdl"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/v2/cachemdl"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/v2/loggermdl"
)
// Entry is a data to be stored against a key.
...
...
@@ -121,7 +121,7 @@ func RetrieveAll() map[string]interface{} {
// If extendBy < 0, it is same as Retrieve function.
func
RetrieveAndExtend
(
key
string
,
extendBy
int64
)
(
Entry
,
error
)
{
loggermdl
.
LogError
(
"***RetrieveAndExtend******** key: "
,
key
)
loggermdl
.
LogError
(
"***
v2
RetrieveAndExtend******** key: "
,
key
)
entry
,
err
:=
Retrieve
(
key
)
if
err
!=
nil
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets