The memcached library that lighttpd uses, last I checked, was synchronous. Lighttpd is an async webserver, which means each time it needs to fetch something from memcached it will block the entire thing waiting for a response.
It won't block very long, mind you, but it can't process in parallel. Unless you aren't talking about using memcached from *within* lighttpd, which then it probably doesn't matter. If you intend to push a ton of traffic it might bite you. If not, you'll be fine with it the way it is. On Sat, 22 Mar 2014, jResponse IDE wrote: > Thank you, Ryan. > > On Sunday, March 23, 2014 2:31:36 AM UTC+1, Ryan McElroy wrote: > Lots of people successfully have used both together, but they aren't > closely related in any way that I'm aware of so I wouldn't expect > any conflicts. Is there anything in particular you're worried about? > The only thing I can think of is that a library you're using to > access memcached might not support lighttpd for some reason, but you > can probably verify that by reading up on your library and testing > it before switching over. > Best of luck! > > ~Ryan > > > > > On Sat, Mar 22, 2014 at 1:57 PM, jResponse IDE <[email protected]> wrote: > Am I likely to run into any nasty surprises using memcached with > lighthttpd? I have used it often enough in a standard LAMP > setup but I now need to move to a setup with Lighttpd and MariaDB on an > Ubuntu 12.04 box. I would imagine that it will work but > I thought it best to post here and verify. I'd be much obliged for > any feedback. > > -- > > --- > You received this message because you are subscribed to the Google Groups > "memcached" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > > > -- > > --- > You received this message because you are subscribed to the Google Groups > "memcached" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > > -- --- You received this message because you are subscribed to the Google Groups "memcached" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
