Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 676 Bytes

README.md

File metadata and controls

26 lines (14 loc) · 676 Bytes

gomemcache

Simple memcache-like server written in Go

Usage

Start up the server.

Connect on port 8080 via TCP (like with telnet for example).

Commands:

SET varname expires_in_sec value

GET varname

DEL varname

QUIT

Background

I created this project for educational purposes for learning Go. So this server probably is not appropriate for production environments.

Acknowledgements

This is an expansion of a simple server that is part of a course called "Web Development w/ Google’s Go (golang) Programming Language" taught by Todd McLeod (awesome course!).