Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Gearman Intro
Search
Boynux
February 11, 2014
Programming
1
75
Gearman Intro
Just start using Gearman!
Boynux
February 11, 2014
Tweet
Share
More Decks by Boynux
See All by Boynux
Load Balancing
boynux
0
120
VCS - TEST - CI
boynux
0
130
PHP Micro framework comparison
boynux
1
1.1k
Design Patterns
boynux
2
220
Avoid Doctrine Memory Leaks
boynux
1
260
Introduction to GNU/Linux
boynux
0
210
Other Decks in Programming
See All in Programming
print("Hello, World")
eddie
2
530
そのAPI、誰のため? Androidライブラリ設計における利用者目線の実践テクニック
mkeeda
2
300
詳解!defer panic recover のしくみ / Understanding defer, panic, and recover
convto
0
240
Introducing ReActionView: A new ActionView-compatible ERB Engine @ Rails World 2025, Amsterdam
marcoroth
0
690
1から理解するWeb Push
dora1998
7
1.9k
Azure SRE Agentで運用は楽になるのか?
kkamegawa
0
2.2k
今から始めるClaude Code入門〜AIコーディングエージェントの歴史と導入〜
nokomoro3
0
150
デザイナーが Androidエンジニアに 挑戦してみた
874wokiite
0
410
Swift Updates - Learn Languages 2025
koher
2
470
はじめてのMaterial3 Expressive
ym223
2
350
testingを眺める
matumoto
1
140
OSS開発者という働き方
andpad
5
1.7k
Featured
See All Featured
Producing Creativity
orderedlist
PRO
347
40k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
KATA
mclloyd
32
14k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
139
34k
Scaling GitHub
holman
463
140k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Testing 201, or: Great Expectations
jmmastey
45
7.7k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
30
9.7k
Reflections from 52 weeks, 52 projects
jeffersonlam
352
21k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
How to Ace a Technical Interview
jacobian
279
23k
Transcript
Gearman Gearman provides a generic application framework to farm out
work to other machines or processes that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions between languages.
Why we need it? • High rate broadcasts. • Parallel
processing. • Abstraction • Laziness :)
How it works
Installation • Centos (from epel): • yum install gearman-job-server •
pecl install gearman • Ubuntu: • apt-add-repository ppa:gearman-developers • apt-get update • apt-get install libgearman7 libgearman-dev • apt-get install gearman-job-server • pecl install gearman
Workers (PHP)
Client (PHP)
More info @_boynux_ OR http://gearman.org/