We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
to reach the goal of #18, we should first implement the basic functions to store/fetch mux.
currently we've done the pux_store_mux function, now we need to implement pux_fetch_mux.
the API is something like APC, but we store the zval without serialization/unserialization:
if ( ($mux = pux_fetch_mux('app_pmux')) == null ) { $mux = new Mux; pux_store_mux('app_pmux', $mux); }
The text was updated successfully, but these errors were encountered:
Done!
Sorry, something went wrong.
No branches or pull requests
to reach the goal of #18, we should first implement the basic functions to store/fetch mux.
currently we've done the pux_store_mux function, now we need to implement pux_fetch_mux.
the API is something like APC, but we store the zval without serialization/unserialization:
The text was updated successfully, but these errors were encountered: