nuxt-ssr-cache icon indicating copy to clipboard operation
nuxt-ssr-cache copied to clipboard

Nuxt 3 Fatal Error

Open 1hakr opened this issue 5 years ago • 0 comments

I'm seeing this warning when using memcached config in the cache. Not sure whats causing this.

Nuxt 3 Fatal Error

My current cache nuxt.config.js

  cache: {
    useHostPrefix: true,
    store: {
      type: 'multi',
      stores: [
        {
          type: 'memory',
          max: 100,
          ttl: 1800
        },
        {
          type: 'memcached',
          max: 1000,
          ttl: 3600,
          options: {
            hosts: ['127.0.0.1:11211'],
            maxValueSize: 5242880
          }
        }
      ]
    },
    pages: ['/']
  },

When i remove memcached, i dont see this warning at all

1hakr avatar Aug 25 '19 06:08 1hakr