Skip to content

Instantly share code, notes, and snippets.

@domgreen
Created April 16, 2011 16:31
Show Gist options
  • Save domgreen/923250 to your computer and use it in GitHub Desktop.
Save domgreen/923250 to your computer and use it in GitHub Desktop.
running memcached from Azure
string arguments = "-m " + cacheSize +
" -l " + endpoint.Address +
" -p " + endpoint.Port;
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = false;
startInfo.UseShellExecute = false;
startInfo.FileName = "memcached.exe";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.Arguments = arguments;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment