Improved anime list serialization speed

This commit is contained in:
Eduard Urbach 2017-07-05 13:08:27 +02:00
parent 8dbc8f17cf
commit 288ca35ec8
3 changed files with 23 additions and 15 deletions

View File

@ -7,12 +7,15 @@ import (
) )
func BenchmarkDBGetMap(b *testing.B) { func BenchmarkDBGetMap(b *testing.B) {
user, _ := arn.GetUser("4J6qpK1ve")
b.ReportAllocs() b.ReportAllocs()
b.ResetTimer() b.ResetTimer()
b.RunParallel(func(pb *testing.PB) { b.RunParallel(func(pb *testing.PB) {
for pb.Next() { for pb.Next() {
arn.DB.GetMap("AnimeList", "4J6qpK1ve") animeList, _ := arn.GetAnimeList(user)
noop(animeList)
} }
}) })
} }
@ -23,7 +26,11 @@ func BenchmarkDBGet(b *testing.B) {
b.RunParallel(func(pb *testing.PB) { b.RunParallel(func(pb *testing.PB) {
for pb.Next() { for pb.Next() {
arn.DB.Get("AnimeList", "4J6qpK1ve") list, _ := arn.DB.Get("AnimeList", "4J6qpK1ve")
animeList := list.(*arn.AnimeList)
noop(animeList)
} }
}) })
} }
func noop(list *arn.AnimeList) {}

View File

@ -64,4 +64,4 @@ nav-height = 3.11rem
// Timings // Timings
fade-speed = 200ms fade-speed = 200ms
transition-speed = 270ms transition-speed = 250ms

View File

@ -154,18 +154,19 @@ var routeTests = map[string][]string{
}, },
// Disable these tests because they require authorization // Disable these tests because they require authorization
"/auth/google": nil, "/auth/google": nil,
"/auth/google/callback": nil, "/auth/google/callback": nil,
"/auth/facebook": nil, "/auth/facebook": nil,
"/auth/facebook/callback": nil, "/auth/facebook/callback": nil,
"/import": nil, "/import": nil,
"/import/anilist/animelist": nil, "/import/anilist/animelist": nil,
"/anime/:id/edit": nil, "/import/anilist/animelist/finish": nil,
"/new/thread": nil, "/anime/:id/edit": nil,
"/new/soundtrack": nil, "/new/thread": nil,
"/user": nil, "/new/soundtrack": nil,
"/settings": nil, "/user": nil,
"/extension/embed": nil, "/settings": nil,
"/extension/embed": nil,
} }
// API interfaces // API interfaces