If you want to inspect Memcache using Telnet , this is a short overview of commands:

Connecting to the server

you should connect to memcache as usual

telnet 192.168.10.2 11211

Supported Commands

This is a short list of supported commands

Command Description Example
get Reads a value get mykey
set Set a key unconditionally set mykey 0 60 5
add Add a new key add newkey 0 60 5
replace Overwrite existing key replace key 0 60 5
append Append data to existing key append key 0 60 15
prepend Prepend data to existing key prepend key 0 60 15
incr Increments numerical key value by given number incr mykey 2
decr Decrements numerical key value by given number decr mykey 5
delete Deletes an existing key delete mykey
flush_all Invalidate specific items immediately flush_all
Invalidate all items in n seconds flush_all 900
stats Prints general statistics stats
Prints memory statistics stats slabs
Prints memory statistics stats malloc
Print higher level allocation statistics stats items
stats detail
stats sizes
Resets statistics stats reset
version Prints server version. version
verbosity Increases log level verbosity
quit Terminate telnet session quit

You can check the original post on lzone.de for more information http://lzone.de/articles/memcached.htm

, ,

If you want to start with git and and do it fast, I recommend this Git Tutorial written by Lars Vogel.
In a simple step by step how to Lars gives an overview of the Git basics, in a very nice and effective way.

, ,

L’integrazione continua e’ una tecnica per cui il software viene automaticamente sottoposto ad una serie di processi di build e di controllo di qualita’ ogni volta che viene creata una nuova versione, ovvero ogni volta che uno sviluppatore fa un commit al repository.

Jenkins (fork del progetto Hudson) e’ il uno fra i migliori server open source per l’integrazione continua che puo’ essere utilizzato per fare il build e testare automaticamente i progetti php.

Sebastian Bergmann il creatore di PhpUnit ha recentemente creato un nuovo progetto jenkins-php.org per avere un template standard per l’integrazione continua in php. Sul suo sito potete trovare tutte le informazioni sui software e i plugins da installare per la continuous integration in php.

Per una buona review della procedura potete dare un occhiata a questo post (in inglese) : Setting up jenkins for php projects

, , , ,