func (c *Cacher) GetMangaRecommendation(id int) (data []model.Recommendation, code int, err error) {
    // Get from cache.
    key := internal.GetKey(internal.KeyMangaRecommendation, id)
    if c.cacher.Get(key, &data) == nil {
        return data, http.StatusOK, nil