Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
bafa88c8
Commit
bafa88c8
authored
Jan 03, 2011
by
antirez
Browse files
stupid bug fixed
parent
9b24d8ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dscache.c
View file @
bafa88c8
...
...
@@ -356,7 +356,7 @@ void vmThreadedIOCompletedJob(aeEventLoop *el, int fd, void *privdata,
*
* So we set a negative cache entry avoiding that the
* resumed client will block load what does not exist... */
if
(
dictFind
(
j
->
db
->
dict
,
j
->
key
)
==
NULL
&&
if
(
dictFind
(
j
->
db
->
dict
,
j
->
key
->
ptr
)
==
NULL
&&
(
cacheScheduleIOGetFlags
(
j
->
db
,
j
->
key
)
&
(
REDIS_IO_SAVE
|
REDIS_IO_SAVEINPROG
))
==
0
)
{
...
...
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