Unix and Linux Discussions Tagged with specific |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
14,486 |
UNIX for Advanced & Expert Users |
|
|
|
14 |
14,727 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
9,155 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
15,572 |
AIX |
|
|
|
5 |
4,296 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,466 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
14,465 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
8,841 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,087 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
11,151 |
Shell Programming and Scripting |
|
|
|
1 |
3,132 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
10,174 |
Shell Programming and Scripting |
|
|
|
2 |
3,455 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,699 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
28,552 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
11,187 |
Shell Programming and Scripting |
|
|
|
4 |
14,294 |
Linux |
|
|
|
4 |
2,465 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
7,860 |
Red Hat |
|
|
|
4 |
2,808 |
Shell Programming and Scripting |
|
|
|
3 |
2,548 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,640 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,609 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
4,383 |
Shell Programming and Scripting |
|
|
|
1 |
5,133 |
Shell Programming and Scripting |
|
|
|
12 |
16,265 |
Shell Programming and Scripting |
|
|
|
4 |
9,245 |
UNIX Desktop Questions & Answers |
|
|
|
4 |
26,944 |
Shell Programming and Scripting |
|
|
|
2 |
3,165 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,018 |
Shell Programming and Scripting |
|
|
|
8 |
10,084 |
Shell Programming and Scripting |
|
|
|
3 |
14,387 |
Programming |
|
|
|
1 |
2,856 |
Shell Programming and Scripting |
|
|
|
7 |
4,124 |
Shell Programming and Scripting |
|
|
|
6 |
10,505 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,073 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
20,738 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,314 |
Shell Programming and Scripting |
|
|
|
5 |
5,720 |
Shell Programming and Scripting |
|
|
|
2 |
5,264 |
Shell Programming and Scripting |
MEMCACHED_GET_USER_DATA(3) libmemcached MEMCACHED_GET_USER_DATA(3)
NAME
memcached_get_user_data - libmemcached Documentation
Manage user specific data
LIBRARY
C Client Library for memcached (libmemcached, -lmemcached)
SYNOPSIS
#include <libmemcached/memcached.h>
void *memcached_get_user_data(memcached_st *ptr)
void *memcached_set_user_data(memcached_st *ptr, void *data)
Compile and link with -lmemcached
DESCRIPTION
libmemcached(3) allows you to store a pointer to a user specific data inside the memcached_st structure.
memcached_set_user_data() is used to set the user specific data in the memcached_st structure.
memcached_get_user_data() is used to retrieve the user specific data in the memcached_st structure.
RETURN
memcached_set_user_data() returns the previous value of the user specific data.
memcached_get_user_data() returns the current value uf the user specific data.
HOME
To find out more information please check: http://libmemcached.org/
SEE ALSO
memcached(1) libmemcached(3)
AUTHOR
Brian Aker
COPYRIGHT
2011, Brian Aker DataDifferential, http://datadifferential.com/
1.0.8 May 22, 2012 MEMCACHED_GET_USER_DATA(3)