No Description http://gearman.org/

Brian Aker df2f54791c Change options on verbosity. 11 years ago
benchmark d22902c839 Fix more warnings. 12 years ago
bin b17fa2c6d8 Additional SSL cleanup. 11 years ago
docs 271c36f1a3 Update error (heading toward better task errors). 11 years ago
examples 18778e2d5b Update rules for uuid and event. 12 years ago
gearmand 416f41fb2f Update support for SSL (add basic documentation). 11 years ago
libgearman 4cf83c7b79 Further update ssl-errors 11 years ago
libgearman-1.0 bde4dc55a5 Fix the error return on commands from server to display the right error. 11 years ago
libgearman-server 38ccd6fcdf Merge lp:~brianaker/gearmand/postgres-is_fix Build: jenkins-Gearmand-824 11 years ago
libgearmancore 1750815a2e Re-enable code that checks for options immediatly. 11 years ago
libhashkit d22902c839 Fix more warnings. 12 years ago
libhashkit-1.0 e7aa2faa8f Adding support for deriving the unique value based on the data that is supplied by the client. 12 years ago
libhostile 7047951e8d Improve testing and assert around gearmand hostile test. 11 years ago
libtest df2f54791c Change options on verbosity. 11 years ago
m4 b17fa2c6d8 Additional SSL cleanup. 11 years ago
man 141dc05c3f Fix how we call man to make sure we get the most out of PAR build. 11 years ago
scripts 75a94ffb2d Upstart configuration 12 years ago
support 39d24a63b7 Add .a since we are building a static library. 11 years ago
tests 258bafe09b Further refine errors from SSL 11 years ago
util 0f9f7d5afa Cleanup error cases where warning should be issued, not error. 11 years ago
.bootstrap 9799194de0 Add bootstrap configure file. 12 years ago
.bzrignore b17fa2c6d8 Additional SSL cleanup. 11 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 0b465033c4 Tagging for release. 11 years ago
HACKING 9ed4d2b4a1 Update docs 12 years ago
Makefile.am 981906f5cc Update the SSL support (testing works in a smoother manner). 11 years ago
NEWS 66e9eb9419 Import from HG 16 years ago
PROTOCOL 48379f5a9b Allow maxqueue to specify different limits for different priorities. 14 years ago
README 9ed4d2b4a1 Update docs 12 years ago
THANKS 893380c25f Fix for issue where PHP was not being handed memory it thought that it owned. 13 years ago
bootstrap.sh 3d983cd188 No longer fail builds via return code on valgrind 11 years ago
configure.ac b17fa2c6d8 Additional SSL cleanup. 11 years ago
rpm.am 8a44564d53 Check that sqlite table is what we expect it to be after we shutdown the server. 12 years ago
version.m4 0b465033c4 Tagging for release. 11 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
---------------

You can grab a released version of Gearman from http://launchpad.net/gearmand/. If you want to work on the latest code, please read the file HACKING.

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.