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
74
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
「Cursor/Devin全社導入の理想と現実」のその後
saitoryc
0
830
PHPでWebSocketサーバーを実装しよう2025
kubotak
0
290
Composerが「依存解決」のためにどんな工夫をしているか #phpcon
o0h
PRO
1
270
「テストは愚直&&網羅的に書くほどよい」という誤解 / Test Smarter, Not Harder
munetoshi
0
180
Blazing Fast UI Development with Compose Hot Reload (droidcon New York 2025)
zsmb
1
300
システム成長を止めない!本番無停止テーブル移行の全貌
sakawe_ee
1
210
ふつうの技術スタックでアート作品を作ってみる
akira888
1
890
Deep Dive into ~/.claude/projects
hiragram
14
2.6k
ruby.wasmで多人数リアルタイム通信ゲームを作ろう
lnit
3
490
Porting a visionOS App to Android XR
akkeylab
0
480
Node-RED を(HTTP で)つなげる MCP サーバーを作ってみた
highu
0
120
Is Xcode slowly dying out in 2025?
uetyo
1
280
Featured
See All Featured
Balancing Empowerment & Direction
lara
1
430
Making Projects Easy
brettharned
116
6.3k
What's in a price? How to price your products and services
michaelherold
246
12k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.8k
Bash Introduction
62gerente
613
210k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
20k
Visualization
eitanlees
146
16k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
The Straight Up "How To Draw Better" Workshop
denniskardys
235
140k
Testing 201, or: Great Expectations
jmmastey
43
7.6k
Code Reviewing Like a Champion
maltzj
524
40k
KATA
mclloyd
30
14k
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/