skip to Main Content

Memcached – Session Data is not updating

I m using express-session and memcached-connect package for maintaining session. Everything is working as expected. Here is my implementation: Middleware app.use(session({ rolling: true, secret: 'iloveexpress', proxy: 'true', store: new MemcachedStore({ hosts: ['127.0.0.1:11211'] }), cookie: { maxAge: 86400000, path: "/", domain:…

VIEW QUESTION

Node Js and Ebay api

I am novice to NodeJs and working with ebay-api. I found this great example at GitHub one strange issue is when I run the js file via CMD. it is working but sometimes it shows error and then I cleared…

VIEW QUESTION
Back To Top
Search