No Description http://gearman.org/

Brian Aker 0aa4e9e211 Fix for lp:948312 13 years ago
benchmark 0aa4e9e211 Fix for lp:948312 13 years ago
bin 2104a0259e Switch how we spawn applications that we are testing. 13 years ago
config 7f44eba317 Update autoconf framework. 13 years ago
docs 5f1cd0606d Update docs 13 years ago
examples 0aa4e9e211 Fix for lp:948312 13 years ago
gearmand 0aa4e9e211 Fix for lp:948312 13 years ago
libgearman 3730290b70 More error output to look for user inserting bad tasks: https://bugs.launchpad.net/gearmand/+bug/951574 13 years ago
libgearman-1.0 3730290b70 More error output to look for user inserting bad tasks: https://bugs.launchpad.net/gearmand/+bug/951574 13 years ago
libgearman-server 0aa4e9e211 Fix for lp:948312 13 years ago
libhostile c355388695 Real fix for include issue. 13 years ago
libtest 4e73c7da3b Merge in libtest. 13 years ago
m4 acefcf1045 Merging lp:~oleksiyk/gearmand/mysql to Build branch 13 years ago
scripts df48529bed Took care of scripts and support. 15 years ago
support be65fd421f Update for 0.28 release 13 years ago
tests 0aa4e9e211 Fix for lp:948312 13 years ago
util 4e73c7da3b Merge in libtest. 13 years ago
.bzrignore 4e73c7da3b Merge in libtest. 13 years ago
.quickly 6251b89c9c Merge in updates since .20, this includes new build configs. 14 years ago
AUTHORS 1e091d57b1 Update docs, credit John Ewart for epoch work (wahoo!), and a few other packing details. 13 years ago
COPYING 3740ff1fe2 Fix for bad copyright headers. 14 years ago
ChangeLog 2d5728574f Update changelog 13 years ago
HACKING 43c2a9bde0 Final updates on spec files. 13 years ago
Makefile.am e07461ad52 Fix rpm build by not use -j during make. This is a work around. 13 years ago
NEWS 66e9eb9419 Import from HG 16 years ago
PROTOCOL 9c4eb2dddc Tweaked doc configs, fixed PROTOCOL typo. 15 years ago
README 43c2a9bde0 Final updates on spec files. 13 years ago
THANKS 893380c25f Fix for issue where PHP was not being handed memory it thought that it owned. 13 years ago
bootstrap.sh b277f48c06 New m4 logic for stdint. 13 years ago
configure.ac 977665cd9c Fix a number of issues with style/compiling for the mysql plugin. 13 years ago

README

Hi!

You've most likely downloaded this package as a tar.gz distribution,
so you'll want to read Getting Started. If you are interested in
developing or submitting patches to the project, read the Contributing
and Coding Style sections.


Getting Started
---------------

To build, you can follow the normal:

./configure
make
make install

You can also run 'make test' before installing to make sure everything
checks out ok. Once you have it installed, you can start the Gearman
job server with:

gearmand -v

This will start it while printing some verbose messages. To try
running a job through it, look in the examples/ directory of this
source and run:

./reverse_worker

Once that is running, you can run your first job with:

./reverse_client "Hello, Gearman!"

If all goes well, the reverse_worker application should have output:

Job=H:lap:1 Workload=Hello, Gearman! Result=!namraeG ,olleH

While the reverse_client returned:

Result=!namraeG ,olleH

If you want to start writing your own client and workers, be sure to
check out the developer API at:

http://gearman.info/libgearman.html

You can also find other useful resources related to the project at:

http://www.gearman.org/

Enjoy!


Contributing
------------

If you are getting this code from https://launchpad.net/gearmand
then continue reading. Otherwise these directions are not for you
(well maybe...).

To obtain code from https://launchpad.net/gearmand you will need to
issue the following command:

bzr branch lp:gearmand

Once the tree is branched you will need to build the "configure"
script. You can do this by running the script:

./config/autorun.sh

It will set up all of the files you need to build the package. At
that point it is just the typical "./configure; make; make test;
make install"

For a tarball release do a "make dist" and for an RPM type "make rpm".

For patches please create a branch on launchpad and propose it to be
merged into the trunk. You can find out more information on how to
do this at the launchpad help site:

https://help.launchpad.net/


Thanks and keep hacking!

Cheers,
-Brian
Seattle, WA.