Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Resonance
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
distantmagic
Resonance
Commits
ae971568
Commit
ae971568
authored
11 months ago
by
Mateusz Charytoniuk
Browse files
Options
Downloads
Patches
Plain Diff
fix: redis session gc
parent
fc627961
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Session.php
+14
-10
14 additions, 10 deletions
src/Session.php
with
14 additions
and
10 deletions
src/Session.php
+
14
−
10
View file @
ae971568
...
@@ -5,7 +5,6 @@ declare(strict_types=1);
...
@@ -5,7 +5,6 @@ declare(strict_types=1);
namespace
Distantmagic\Resonance
;
namespace
Distantmagic\Resonance
;
use
Ds\Map
;
use
Ds\Map
;
use
Redis
;
readonly
class
Session
readonly
class
Session
{
{
...
@@ -24,7 +23,12 @@ readonly class Session
...
@@ -24,7 +23,12 @@ readonly class Session
public
function
persist
():
void
public
function
persist
():
void
{
{
$this
->
getRedisConnection
()
->
set
(
$redisConnection
=
new
RedisConnection
(
$this
->
redisConnectionPoolRepository
,
$this
->
getRedisPrefix
(),
);
$redisConnection
->
redis
->
set
(
$this
->
id
,
$this
->
id
,
$this
->
serializer
->
serialize
(
$this
->
data
->
toArray
())
$this
->
serializer
->
serialize
(
$this
->
data
->
toArray
())
);
);
...
@@ -32,7 +36,12 @@ readonly class Session
...
@@ -32,7 +36,12 @@ readonly class Session
private
function
getPersistedData
():
mixed
private
function
getPersistedData
():
mixed
{
{
$storedValue
=
$this
->
getRedisConnection
()
->
get
(
$this
->
id
);
$redisConnection
=
new
RedisConnection
(
$this
->
redisConnectionPoolRepository
,
$this
->
getRedisPrefix
(),
);
$storedValue
=
$redisConnection
->
redis
->
get
(
$this
->
id
);
if
(
!
is_string
(
$storedValue
)
||
empty
(
$storedValue
))
{
if
(
!
is_string
(
$storedValue
)
||
empty
(
$storedValue
))
{
return
null
;
return
null
;
...
@@ -41,7 +50,7 @@ readonly class Session
...
@@ -41,7 +50,7 @@ readonly class Session
return
$this
->
serializer
->
unserialize
(
$storedValue
);
return
$this
->
serializer
->
unserialize
(
$storedValue
);
}
}
private
function
getRedis
Connection
():
Redis
private
function
getRedis
Prefix
():
string
{
{
$redisPrefix
=
$this
->
redisConfiguration
$redisPrefix
=
$this
->
redisConfiguration
->
connectionPoolConfiguration
->
connectionPoolConfiguration
...
@@ -49,12 +58,7 @@ readonly class Session
...
@@ -49,12 +58,7 @@ readonly class Session
->
prefix
->
prefix
;
;
$redisConnection
=
new
RedisConnection
(
return
$redisPrefix
.
'.session'
;
redisConnectionPoolRepository
:
$this
->
redisConnectionPoolRepository
,
redisPrefix
:
$redisPrefix
.
'session:'
,
);
return
$redisConnection
->
redis
;
}
}
private
function
restoreSessionData
():
array
private
function
restoreSessionData
():
array
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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