Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10494086
cache.go
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
cache.go
View Options
/*
* Copyright © 2018 A Bunch Tell LLC.
*
* This file is part of WriteFreely.
*
* WriteFreely is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/
package
writefreely
import
(
"sync"
"time"
)
const
(
postsCacheTime
=
4
*
time
.
Second
)
type
(
postsCacheItem
struct
{
Expire
time
.
Time
Posts
*
[]
PublicPost
ready
chan
struct
{}
}
AuthCache
struct
{
Alias
,
Pass
,
Token
string
BadPasses
map
[
string
]
bool
expire
time
.
Time
}
)
var
(
userPostsCache
=
struct
{
sync
.
RWMutex
users
map
[
int64
]
postsCacheItem
}{
users
:
map
[
int64
]
postsCacheItem
{},
}
)
func
CachePosts
(
userID
int64
,
p
*
[]
PublicPost
)
{
close
(
userPostsCache
.
users
[
userID
].
ready
)
userPostsCache
.
Lock
()
userPostsCache
.
users
[
userID
]
=
postsCacheItem
{
Expire
:
time
.
Now
().
Add
(
postsCacheTime
),
Posts
:
p
,
}
userPostsCache
.
Unlock
()
}
func
GetPostsCache
(
userID
int64
)
*
[]
PublicPost
{
userPostsCache
.
RLock
()
pci
,
ok
:=
userPostsCache
.
users
[
userID
]
userPostsCache
.
RUnlock
()
if
!
ok
{
return
nil
}
if
pci
.
Expire
.
Before
(
time
.
Now
())
{
// Cache is expired
return
nil
}
return
pci
.
Posts
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 6, 6:43 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3152746
Attached To
rWF WriteFreely
Event Timeline
Log In to Comment