cache.js 2.58 KB
'use strict';

const SECOND = 1;
const MINUTE = 60 * SECOND;

const cachePage = {
    '/': 5 * MINUTE,

    // 频道页
    '/boys': 30 * SECOND,
    '/girls': 30 * SECOND,
    '/kids': 30 * SECOND,
    '/lifestyle': 30 * SECOND,

    // 自定义频道
    '/channel/:id.html': 1 * MINUTE,

    // ajax获取频道页楼层
    '/channel/getResourceContent': 30 * MINUTE,

    // 商品分类
    '/cate': 5 * MINUTE,

    // 商品详情页
    '/product/\\/pro_([\\d]+)_([\\d]+)\\/(.*)/': 30 * MINUTE,
    '/product/\\/show_([\\d]+)/': 30 * MINUTE,

    // 商品详情ajax

    // 店铺推荐
    '/product/detail/preference': 5 * MINUTE,
    '/product/detail/intro/:productskn': 15 * MINUTE,

    // 店铺人气单品
    '/product/new/shop/hotlist': 5 * MINUTE,

    // 店铺简介
    '/product/index/intro': 15 * MINUTE,

    // 逛
    '/guang/': 1 * MINUTE,
    '/guang/info/index': 10 * MINUTE,
    '/guang/author/index': 1 * MINUTE,
    '/guang/tags/index': 1 * MINUTE,
    '/guang/plustar': 1 * MINUTE,
    '/guang/plustar/brandinfo': 1 * MINUTE,
    '/guang/plusstar': 1 * MINUTE,
    '/guang/plusstar/resources-goodsList': 1 * MINUTE,
    '/guang/index/page': 1 * MINUTE,

    // '/guang/plustar/brandinfo': 1 * MINUTE,
    '/guang/star': 1 * MINUTE,

    // 领券中心
    '/activity/coupon/floor': 1 * MINUTE,

    // 商品列表
    '/product/search/filter': 1 * MINUTE,

    /* 筛选默认须要添加uid参数
    '/product/list/index': 1 * MINUTE,
    '/product/index/index': 1 * MINUTE,
    '/product/index/brand': 1 * MINUTE,
    '/product/search/search': 1 * MINUTE,
    */

    '/product/new': 1 * MINUTE,

    // 秒杀列表
    '/product/seckill': 30 * SECOND,
    '/product/seckill/list': 30 * SECOND,

    // 秒杀详情
    '/product/^\\/seckill\\/pro_([\\d]+)_([\\d]+)/': 30 * MINUTE,
    '/product/^\\/seckill\\/show_([\\d]+)/': 30 * MINUTE,

    // sale
    '/product/sale': 5 * MINUTE,
    '/product/sale/discount': 5 * MINUTE,
    '/product/sale/vip': 5 * MINUTE,
    '/product/sale/breakingYards': 5 * MINUTE,
    '/product/sale/discount/detail': 5 * MINUTE,

    // 奥莱
    '/product/outlet': 30 * SECOND,
    '/product/outlet/activity': 1 * MINUTE,


    // 品牌一览
    '/brands': 5 * MINUTE,
    '/brands/search': 1 * MINUTE,

    // 直播活动
    '/activity/live': 1 * MINUTE,

    // 单品日
    '/activity/single-day': 1 * MINUTE,
    '/activity/single-day/getSingleData': 30 * SECOND,
    '/activity/single-day/getProductData': 30 * SECOND,

    // 店铺收藏
    '/activity/shopCollect': 1 * MINUTE,
    '/activity/shopNav': 30 * SECOND

};

module.exports = cachePage;