going beyond lamp - wordcamp sheffield 2014

21
COMPANY NAME PRESENTATION TITLE 12 - 12 - 2012 TimNash.co.uk @tnash #beyondLAMP LAMP Going Beyond... ...Then a bit further

Upload: tim-nash

Post on 23-Aug-2014

263 views

Category:

Internet


1 download

DESCRIPTION

Slides from my talk at WordCamp Sheffield, on looking at technology other than Apache, MySQL, PHP. From Nginx to running PHP through HipHop Virtual Machine, to Memcache and Elasticsearch there is so much more to it than a dull LAMP stack.

TRANSCRIPT

Page 1: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

LAMPGoing Beyond... ...Then a bit further

Page 2: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

LAMPLinux

ApacheMySQL

PHP

Page 3: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

L[AMP]Linux

ApacheMySQL

PHP

Page 4: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

WIMPWindows

IISMySQL

PHP

REALLY!!!

OMG You like Serious init!

CRAZY??

Page 5: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

[AMP]“Use the best tool for the job...

...Not just the most popular”- almost certainly an engineer

Page 6: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

[AMP]“You don’t dig latrines with a swiss army knife”

Page 7: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

ANGINX HTTP and Proxy Server

Page 8: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

AApache is like Microsoft Word, it has a million options but you only need six. Nginx does those six things, and it does five of them 50 times faster than Apache.

- Chris Lea (https://chrislea.com/)

Page 9: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

MMaria DB & Percona Server

Page 10: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

PHipHop Virtual Machine(HHVM)

Page 11: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

P<?hhfunction yieldInfiniteInts(): Continuation<int> {  $i = 0;  while (true) {    yield $i++;  }}

$generator = yieldInfiniteInts();foreach ($generator as $value) {  echo "$value\n";}

http://docs.hhvm.com/manual/en/hack.continuations.php

Page 12: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

Key value storesMemcached and Redis (Redis Cloud)

Page 13: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

Key : Value

Tim : Geeky

Page 14: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

Queue ManagementBeanstalkd & Gearman

(Amazon SQS)

Page 15: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk

1. WordPress sends job to queue2. Job Server (Beanstalk, Gearman) Holds in a queue3. Worker picks job from the queue and completes it

2 .

3 .1 .

QUEUE MANAGEMENT SYSTEM

Page 16: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

Caching reverse proxiesVarnish

(CloudFront, CloudFlare)

Page 17: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

PROXYCACHE

HTTP SERVER(ORIGIN)

PROXY CACHING

Page 18: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

VARNISH NGINX(ORIGIN)

PROXY CACHING OVER SSL WITH VARNISH

NGINXSSL END POINT

Page 19: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

Search EnginesSOLR & Elastic Search

(Bonsai, Swiftype)

Page 20: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

Getting Started is Easy

Use a third party service

Cheap VPS costs <£5 a month - http://lowendbox.com/

Vagrant is free!

Page 21: Going Beyond LAMP - WordCamp Sheffield 2014

C O M P A N Y N A M E P R E S E N T A T I O N T I T L E 1 2 - 1 2 - 2 0 1 2TimNash.co.uk @tnash #beyondLAMP

The End!Thanks for listening and don’t forget to visit...

Slides: https://timnash.co.uk/wordcamp-sheffield2014/