This website works better with JavaScript.
Home
Explore
Help
Sign In
nekobus
/
mastodon_neko
forked from
closed-social/mastodon
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Remove stale entries from cache results
master
Eugen Rochko
8 years ago
parent
1ff0d5aea6
commit
8a3745a4df
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/controllers/api/v1/accounts_controller.rb
+1
-1
app/controllers/api/v1/notifications_controller.rb
+1
-1
app/controllers/api/v1/timelines_controller.rb
+ 1
- 1
app/controllers/api/v1/accounts_controller.rb
View File
@ -128,6 +128,6 @@ class Api::V1::AccountsController < ApiController
end
end
raw
.
map
{
|
status
|
cached_keys_with_value
[
status
.
cache_key
]
||
uncached
[
status
.
id
]
}
raw
.
map
{
|
status
|
cached_keys_with_value
[
status
.
cache_key
]
||
uncached
[
status
.
id
]
}
.
compact
end
end
+ 1
- 1
app/controllers/api/v1/notifications_controller.rb
View File
@ -39,6 +39,6 @@ class Api::V1::NotificationsController < ApiController
end
end
raw
.
map
{
|
notification
|
cached_keys_with_value
[
notification
.
cache_key
]
||
uncached
[
notification
.
id
]
}
raw
.
map
{
|
notification
|
cached_keys_with_value
[
notification
.
cache_key
]
||
uncached
[
notification
.
id
]
}
.
compact
end
end
+ 1
- 1
app/controllers/api/v1/timelines_controller.rb
View File
@ -87,6 +87,6 @@ class Api::V1::TimelinesController < ApiController
end
end
raw
.
map
{
|
status
|
cached_keys_with_value
[
status
.
cache_key
]
||
uncached
[
status
.
id
]
}
raw
.
map
{
|
status
|
cached_keys_with_value
[
status
.
cache_key
]
||
uncached
[
status
.
id
]
}
.
compact
end
end
Write
Preview
Loading…
Cancel
Save