Install the Aerospike client
Prerequisites
The Aerospike C client library requires the following libraries present on the machine to build and run:
Library Name | .rpm Package | Description |
---|---|---|
libssl | openssl | |
libcrypto | openssl | Required for RIPEMD160 hash function. |
To install library prerequisites using yum
:
sudo yum install openssl-devel
Some installation paths do not include the necessary C development tools. You may also need these packages:
sudo yum install gcc gcc-c++
If asynchronous functionality is desired, one of the following event frameworks must be installed.
libuv 1.15.0+
libuv has excellent performance and supports all platforms. The client also supports async TLS (SSL) sockets when using libuv.
libev 4.24+
libev has excellent performance on Linux/macOS, but its Windows implementation is suboptimal. Therefore, the C client supports libev on Linux/macOS only. The client does support async TLS (SSL) sockets when using libev.
libevent 2.1.8+
libevent is less performant than the other two options, but it does support all platforms. The client also supports async TLS (SSL) sockets when using libevent.
If a different event framework version is required, then the C client should be built from source code with that event framework version instead of following these pre-compiled library installation steps.
Download and Extract
You can download the C client package manually from the Download page. Make sure to read the release notes of the version you are downloading. Alternatively, you can automate downloading versions of the C client package from the artifact repository:
https://download.aerospike.com/artifacts/aerospike-client-c/<version>/
Package | Description |
---|---|
aerospike-client-c_<VERSION>_amzn2_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_amzn2_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_amzn2_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_amzn2_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.4.1_amzn2_x86_64.tgzcd aerospike-client-c-libuv_6.4.1_amzn2_x86_64
Contents
The package contains the following installer packages:
-
aerospike-client-c[-{EVENTLIB}]-devel-<VERSION>-1.amzn2.<ARCH>.rpm
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]-<VERSION>-1.amzn2.<ARCH>.rpm
Aerospike C client runtime (shared library) installer for given version and event framework library.
Install
Install one development package to compile your application with Aerospike client. Install corresponding runtime package to run your application with Aerospike client.
sudo rpm -i <installer package>
Example
sudo rpm -i aerospike-client-c-libuv-devel-6.4.1-1.amzn2.x86_64.rpmsudo rpm -i aerospike-client-c-libuv-6.4.1-1.amzn2.x86_64.rpm
Development files install in:
/usr/include/aerospike
/usr/include/citrusleaf
/usr/lib/libaerospike.a
Runtime files install in:
/usr/lib/libaerospike.so
Building Applications with Event Library
Event libraries usually install into /usr/local/lib. Most operating systems do not
search /usr/local/lib by default. Therefore, the following LD_LIBRARY_PATH
setting
may be necessary.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
When compiling your async applications with aerospike header files, the event library
must be defined (-DAS_USE_LIBUV
or -DAS_USE_LIBEV
or -DAS_USE_LIBEVENT
) on the
command line or in an IDE. Example:
gcc -DAS_USE_LIBUV -o myapp myapp.c -laerospike -lev -lssl -lcrypto -lpthread -lm -lz
Prerequisites
Install library prerequisites using apt-get
:
sudo apt-get updatesudo apt-get install libssl-dev zlib1g-dev make
For asynchronous functionality, install one of the following event frameworks.
libuv 1.15.0+
libuv has excellent performance and supports all platforms. The client also supports async TLS (SSL) sockets when using libuv.
libev 4.24+
libev has excellent performance on Linux/macOS, but its Windows implementation is suboptimal. Therefore, the C client supports libev on Linux and macOS only. The client does support async TLS (SSL) sockets when using libev.
libevent 2.1.8+
libevent is less performant than the other two options, but it does support all platforms. The client also supports async TLS (SSL) sockets when using libevent.
If a different event framework version is required, then the C client should be built from source code with that event framework version instead of following these pre-compiled library installation steps.
Download and Extract
You can download the C client package manually from the Download page. Make sure to read the release notes of the version you are downloading. Alternatively, you can automate downloading versions of the C client package from the artifact repository:
https://download.aerospike.com/artifacts/aerospike-client-c/<version>/
C client version 6.3.0 and newer
Support for 64-bit ARM (ARMv8.2-A instruction set) was added in C client version 6.3.0, in parallel with the server 6.2 ARM support.
ARCH
platforms are based on uname -m
, and include x86_64
, aarch64
(Graviton 2 and similar) and arm64
(Apple M1).
Package | Description |
---|---|
aerospike-client-c_<VERSION>_debian11_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_debian11_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_debian11_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_debian11_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.4.4_debian11_x86_64.tgzcd aerospike-client-c-libuv_6.4.4_debian11_x86_64
Package | Description |
---|---|
aerospike-client-c_<VERSION>_debian12_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_debian12_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_debian12_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_debian12_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.3.0_debian12_x86_64.tgzcd aerospike-client-c-libuv_6.3.0_debian12_x86_64
Prior to C client version 6.3.0
Package | Description |
---|---|
aerospike-client-c-<VERSION>.debian11.x86_64.tgz | sync commands |
aerospike-client-c-libuv-<VERSION>.debian11.x86_64.tgz | sync and async commands with libuv |
aerospike-client-c-libev-<VERSION>.debian11.x86_64.tgz | sync and async commands with libev |
aerospike-client-c-libevent-<VERSION>.debian11.x86_64.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv-6.2.1.debian11.x86_64.tgzcd aerospike-client-c-libuv-6.2.1.debian11.x86_64
Contents
The package contains two installers for the given architecture. The supported DEB-ARCH
architectures are amd64
(equivalent to x86_64) and arm64
(equivalent to aarch64).
-
aerospike-client-c[-{EVENTLIB}]-devel_<VERSION>-debian11_{DEB-ARCH}.deb
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]_<VERSION>-debian11_{DEB-ARCH}.deb
Aerospike C client runtime (shared library) installer for given version and event framework library.
-
aerospike-client-c[-{EVENTLIB}]-devel_<VERSION>-debian12_{DEB-ARCH}.deb
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]_<VERSION>-debian12_{DEB-ARCH}.deb
Aerospike C client runtime (shared library) installer for given version and event framework library.
Install
Install one development package to compile your application with Aerospike client. Install corresponding runtime package to run your application with Aerospike client.
sudo dpkg -i <installer package>
Example
sudo dpkg -i aerospike-client-c-libuv-devel_6.4.4-debian11_amd64.debsudo dpkg -i aerospike-client-c-libuv_6.4.4-debian11_amd64.deb
sudo dpkg -i aerospike-client-c-libuv-devel_6.4.4-debian12_amd64.debsudo dpkg -i aerospike-client-c-libuv_6.4.4-debian12_amd64.deb
Development files install in:
/usr/include/aerospike
/usr/include/citrusleaf
/usr/lib/libaerospike.a
Runtime files install in:
/usr/lib/libaerospike.so
Building Applications with Event Library
Event libraries usually install into /usr/local/lib. Most operating systems do not
search /usr/local/lib by default. Therefore, the following LD_LIBRARY_PATH
setting
may be necessary.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
When compiling your async applications with aerospike header files, the event library
must be defined (-DAS_USE_LIBUV
or -DAS_USE_LIBEV
or -DAS_USE_LIBEVENT
) on the
command line or in an IDE. Example:
gcc -DAS_USE_LIBUV -o myapp myapp.c -laerospike -lev -lssl -lcrypto -lpthread -lm -lz
Prerequisites
The Aerospike C client library requires the following libraries present on the machine to build and run:
Library Name | .rpm Package | Description |
---|---|---|
libssl | openssl | |
libcrypto | openssl | Required for RIPEMD160 hash function. |
To install library prerequisites using yum
:
sudo yum install openssl-devel
Some CentOS installation paths do not include the necessary C development tools. You may also need these packages:
sudo yum install gcc gcc-c++
If asynchronous functionality is desired, one of the following event frameworks must be installed.
libuv 1.15.0+
libuv has excellent performance and supports all platforms. The client also supports async TLS (SSL) sockets when using libuv.
libev 4.24+
libev has excellent performance on Linux/macOS, but its Windows implementation is suboptimal. Therefore, the C client supports libev on Linux/macOS only. The client does support async TLS (SSL) sockets when using libev.
libevent 2.1.8+
libevent is less performant than the other two options, but it does support all platforms. The client also supports async TLS (SSL) sockets when using libevent.
If a different event framework version is required, then the C client should be built from source code with that event framework version instead of following these pre-compiled library installation steps.
Download and Extract
You can download the C client package manually from the Download page. Make sure to read the release notes of the version you are downloading. Alternatively, you can automate downloading versions of the C client package from the artifact repository:
https://download.aerospike.com/artifacts/aerospike-client-c/<version>/
C client version 6.3.0 and newer
Support for 64-bit ARM (ARMv8.2-A instruction set) was added in C client version 6.3.0, in parallel with the server 6.2 ARM support.
ARCH
platforms are based on uname -m
, and include x86_64
, aarch64
(Graviton 2 and similar) and arm64
(Apple M1).
Package | Description |
---|---|
aerospike-client-c_<VERSION>_el8_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_el8_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_el8_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_el8_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.3.1_el8_x86_64.tgzcd aerospike-client-c-libuv_6.3.1_el8_x86_64
Package | Description |
---|---|
aerospike-client-c_<VERSION>_el9_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_el9_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_el9_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_el9_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.3.1_el9_x86_64.tgzcd aerospike-client-c-libuv_6.3.1_el9_x86_64
Prior to C client version 6.3.0
Package | Description |
---|---|
aerospike-client-c-<VERSION>.el8.<ARCH>.tgz | sync commands |
aerospike-client-c-libuv-<VERSION>.el8.<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev-<VERSION>.el8.<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent-<VERSION>.el8.<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv-6.2.1.el8.x86_64.tgzcd aerospike-client-c-libuv-6.2.1.el8.x86_64
Contents
The package contains the following installer packages:
-
aerospike-client-c[-{EVENTLIB}]-devel-<VERSION>-1.el8.<ARCH>.rpm
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]-<VERSION>-1.el8.<ARCH>.rpm
Aerospike C client runtime (shared library) installer for given version and event framework library.
-
aerospike-client-c[-{EVENTLIB}]-devel-<VERSION>-1.el9.<ARCH>.rpm
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]-<VERSION>-1.el9.<ARCH>.rpm
Aerospike C client runtime (shared library) installer for given version and event framework library.
Install
Install one development package to compile your application with Aerospike client. Install corresponding runtime package to run your application with Aerospike client.
sudo rpm -i <installer package>
Example
sudo rpm -i aerospike-client-c-libuv-devel-6.3.1-1.el9.x86_64.rpmsudo rpm -i aerospike-client-c-libuv-6.3.1-1.el9.x86_64.rpm
Development files install in:
/usr/include/aerospike
/usr/include/citrusleaf
/usr/lib/libaerospike.a
Runtime files install in:
/usr/lib/libaerospike.so
Building Applications with Event Library
Event libraries usually install into /usr/local/lib. Most operating systems do not
search /usr/local/lib by default. Therefore, the following LD_LIBRARY_PATH
setting
may be necessary.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
When compiling your async applications with aerospike header files, the event library
must be defined (-DAS_USE_LIBUV
or -DAS_USE_LIBEV
or -DAS_USE_LIBEVENT
) on the
command line or in an IDE. Example:
gcc -DAS_USE_LIBUV -o myapp myapp.c -laerospike -lev -lssl -lcrypto -lpthread -lm -lz
The Aerospike C client library requires the following libraries present on the machine to build and run.
Library Name | .deb Package | Description |
---|---|---|
libssl | libssl-dev | |
libcrypto | libssl-dev | Required for RIPEMD160 hash function. |
To install library prerequisites via apt-get
:
sudo apt-get install libssl-dev
If asynchronous functionality is desired, one of the following event frameworks must be installed.
libuv 1.15.0+
libuv has excellent performance and supports all platforms. The client also supports async TLS (SSL) sockets when using libuv.
libev 4.24+
libev has excellent performance on Linux/macOS, but its Windows implementation is suboptimal. Therefore, the C client supports libev on Linux/macOS only. The client does support async TLS (SSL) sockets when using libev.
libevent 2.1.8+
libevent is less performant than the other two options, but it does support all platforms. The client also supports async TLS (SSL) sockets when using libevent.
If a different event framework version is required, then the C client should be built from source code with that event framework version instead of following these pre-compiled library installation steps.
Download and Extract
You can download the C client package manually from the Download page. Make sure to read the release notes of the version you are downloading. Alternatively, you can automate downloading versions of the C client package from the artifact repository:
https://download.aerospike.com/artifacts/aerospike-client-c/<version>/
C client version 6.3.0 and newer
Support for 64-bit ARM (ARMv8.2-A instruction set) was added in C client version 6.3.0, in parallel with the server 6.2 ARM support.
ARCH
platforms are based on uname -m
, and include x86_64
, aarch64
(Graviton 2 and similar) and arm64
(Apple M1).
Package | Description |
---|---|
aerospike-client-c_<VERSION>_ubuntu20.04_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_ubuntu20.04_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_ubuntu20.04_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_ubuntu20.04_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.3.0_ubuntu20.04_x86_64.tgzcd aerospike-client-c-libuv_6.3.0_ubuntu20.04_x86_64
Package | Description |
---|---|
aerospike-client-c_<VERSION>_ubuntu22.04_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_ubuntu22.04_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_ubuntu22.04_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_ubuntu22.04_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.3.0_ubuntu22.04_x86_64.tgzcd aerospike-client-c-libuv_6.3.0_ubuntu22.04_x86_64
Package | Description |
---|---|
aerospike-client-c_<VERSION>_ubuntu24.04_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_ubuntu24.04_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_ubuntu24.04_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_ubuntu24.04_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.6.2_ubuntu24.04_x86_64.tgzcd aerospike-client-c-libuv_6.6.2_ubuntu24.04_x86_64
Prior to C client version 6.3.0
Package | Description |
---|---|
aerospike-client-c-<VERSION>.ubuntu20.04.<ARCH>.tgz | sync commands |
aerospike-client-c-libuv-<VERSION>.ubuntu20.04.<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev-<VERSION>.ubuntu20.04.<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent-<VERSION>.ubuntu20.04.<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv-6.2.1.ubuntu20.04.x86_64.tgzcd aerospike-client-c-libuv-6.2.1.ubuntu20.04.x86_64
Package | Description |
---|---|
aerospike-client-c-<VERSION>.ubuntu22.04.<ARCH>.tgz | sync commands |
aerospike-client-c-libuv-<VERSION>.ubuntu22.04.<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev-<VERSION>.ubuntu22.04.<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent-<VERSION>.ubuntu22.04.<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv-6.2.1.ubuntu22.04.x86_64.tgzcd aerospike-client-c-libuv-6.2.1.ubuntu22.04.x86_64
Contents
The package contains two installers for the given architecture. The supported DEB-ARCH
architectures are amd64
(equivalent to x86_64) and arm64
(equivalent to aarch64).
-
aerospike-client-c[-{EVENTLIB}]-devel_<VERSION>-ubuntu20.04_{DEB-ARCH}.deb
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]_<VERSION>-ubuntu20.04_{DEB-ARCH}.deb
Aerospike C client runtime (shared library) installer for given version and event framework library.
-
aerospike-client-c[-{EVENTLIB}]-devel_<VERSION>-ubuntu22.04_{DEB-ARCH}.deb
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]_<VERSION>-ubuntu22.04_{DEB-ARCH}.deb
Aerospike C client runtime (shared library) installer for given version and event framework library.
-
aerospike-client-c[-{EVENTLIB}]-devel_<VERSION>-ubuntu24.04_{DEB-ARCH}.deb
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]_<VERSION>-ubuntu24.04_{DEB-ARCH}.deb
Aerospike C client runtime (shared library) installer for given version and event framework library.
Install
Install one development package to compile your application with the Aerospike client. Install the corresponding runtime package to run your application with the Aerospike client.
sudo dpkg -i <installer package>
Example
sudo dpkg -i aerospike-client-c-libuv-devel_6.3.0-ubuntu20.04_x86_64.debsudo dpkg -i aerospike-client-c-libuv_6.3.0-ubuntu20.04_x86_64.deb
sudo dpkg -i aerospike-client-c-libuv-devel_6.3.0-ubuntu22.04_x86_64.debsudo dpkg -i aerospike-client-c-libuv_6.3.0-ubuntu22.04_x86_64.deb
sudo dpkg -i aerospike-client-c-libuv-devel_6.6.2-ubuntu24.04_x86_64.debsudo dpkg -i aerospike-client-c-libuv_6.6.2-ubuntu24.04_x86_64.deb
Development files install in:
/usr/include/aerospike
/usr/include/citrusleaf
/usr/lib/libaerospike.a
Runtime files install in:
/usr/lib/libaerospike.so
Building Applications with Event Library
Event libraries usually install into /usr/local/lib. Most operating systems do not
search /usr/local/lib by default. Therefore, the following LD_LIBRARY_PATH
setting
may be necessary.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
When compiling your async applications with aerospike header files, the event library
must be defined (-DAS_USE_LIBUV
or -DAS_USE_LIBEV
or -DAS_USE_LIBEVENT
) on the
command line or in an IDE. Example:
gcc -DAS_USE_LIBUV -o myapp myapp.c -laerospike -lev -lssl -lcrypto -lpthread -lm -lz
Prerequisites
Meet the following prerequisites before installing the Aerospike C client:
- M1 Macs
- macOS 12.0+
- Xcode 13.4.1+
- Intel Macs
- macOS 10.9+
- XCode 8.2.1+
If asynchronous functionality is desired, one of the following event frameworks must be installed.
libuv 1.15.0+
libuv has excellent performance and supports all platforms. The client also supports async TLS (SSL) sockets when using libuv.
libev 4.24+
libev has excellent performance on Linux/macOS, but its Windows implementation is suboptimal. Therefore, the C client supports libev on Linux/macOS only. The client does support async TLS (SSL) sockets when using libev.
libevent 2.1.8+
libevent is less performant than the other two options, but it does support all platforms. The client also supports async TLS (SSL) sockets when using libevent.
If a different event framework version is required, then the C client should be built from source code with that event framework version instead of following these pre-compiled library installation steps.
Download and Extract
You can download the C client package manually from the Download page. Make sure to read the release notes of the version you are downloading. Alternatively, you can automate downloading versions of the C client package from the artifact repository:
https://download.aerospike.com/artifacts/aerospike-client-c/<version>/
C client version 6.3.0 and newer
Support for 64-bit ARM (ARMv8.2-A instruction set) was added in C client version 6.3.0, in parallel with the server 6.2 ARM support.
ARCH
platforms are based on uname -m
, and include x86_64
and arm64
(Apple M1).
Package | Description |
---|---|
aerospike-client-c_<VERSION>_mac_<ARCH>.tgz | sync commands |
aerospike-client-c-libuv_<VERSION>_mac_<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev_<VERSION>_mac_<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent_<VERSION>_mac_<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv_6.3.0_mac_arm64.tgzcd aerospike-client-c-libuv_6.3.0_mac_arm64
Prior to C client version 6.3.0
Package | Description |
---|---|
aerospike-client-c-<VERSION>.mac.<ARCH>.tgz | sync commands |
aerospike-client-c-libuv-<VERSION>.mac.<ARCH>.tgz | sync and async commands with libuv |
aerospike-client-c-libev-<VERSION>.mac.<ARCH>.tgz | sync and async commands with libev |
aerospike-client-c-libevent-<VERSION>.mac.<ARCH>.tgz | sync and async commands with libevent |
Extract the contents of the chosen package:
tar xvf <package>
Example
tar xvf aerospike-client-c-libuv-6.2.1.mac.x86_64.tgzcd aerospike-client-c-libuv-6.2.1.mac.x86_64
Contents
The package contains the following installer packages:
-
aerospike-client-c[-{EVENTLIB}]-devel-<VERSION>-<ARCH>.pkg
Aerospike C client development (static library and header files) installer for given version and event framework library. This installer is used for developers when compiling/linking their applications with the Aerospike client library.
-
aerospike-client-c[-{EVENTLIB}]-<VERSION>-<ARCH>.pkg
Aerospike C client runtime (shared library) installer for given version and event framework library.
Example
aerospike-client-c-libuv-devel-6.3.0-arm64.pkg
Install
Install one development package to compile your application with the Aerospike client. Install the corresponding runtime package to run your application with the Aerospike client.
- Double-click on the installer package in a Finder window.
A message may appear that the package is from an unidentified developer and can’t be opened. If that message appears, follow these steps:
- Click OK.
- Right-click or Ctrl-click the package icon, and select Open in the context menu.
- Click Open in the confirmation dialog box.
Then, follow the installation prompts.
Development files install in:
/usr/local/include/aerospike
/usr/local/include/citrusleaf
/usr/local/lib/libaerospike.a
Runtime files install in:
/usr/local/lib/libaerospike.dylib
Building Applications with Event Library
Event libraries usually install into /usr/local/lib. Most operating systems do not
search /usr/local/lib by default. Therefore, the following LD_LIBRARY_PATH
setting
may be necessary.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
When compiling your async applications with aerospike header files, the event library
must be defined (-DAS_USE_LIBUV
or -DAS_USE_LIBEV
or -DAS_USE_LIBEVENT
) on the
command line or in an IDE. Example:
gcc -DAS_USE_LIBUV -o myapp myapp.c -laerospike -lev -lssl -lcrypto -lpthread -lm -lz
Prerequisites
Meet the following prerequisites before installing the Aerospike C client:
- Windows 7+.
- Visual Studio 2017+.
If asynchronous functionality is desired, one of the following event frameworks should be chosen. The Windows version of these event libraries are bundled with the C client package and do not need to be installed separately.
libuv 1.15.0
libuv has excellent performance and supports all platforms. The client also supports async TLS (SSL) sockets when using libuv.
libevent 2.1.8
libevent is less performant, but it does support all platforms. The client also supports async TLS (SSL) sockets when using libevent.
Install from NuGet
C client Windows packages can be installed from NuGet.
- In Visual Studio’s Solution Explorer, Right-click on your project and choose “Manage NuGet Packages…”.
- Click “Browse” and enter “aerospike-client-c” in your search box.
- Click on one of the following packages.
Package | Description |
---|---|
aerospike-client-c-<VERSION> | sync commands |
aerospike-client-c-libuv-<VERSION> | sync and async commands with libuv |
aerospike-client-c-libevent-<VERSION> | sync and async commands with libevent |
- Click
Install
- Click
OK
Libraries and header files install in:
packages/aerospike-client-c[-{EVENTLIB}]-<VERSION>/build/native
Install from Custom Client Build
If installing from a custom C client build (not NuGet install), additional configuration steps are required.
- Define these preprocessor macros in your application project.
Type | Macros |
---|---|
sync | AS_SHARED_IMPORT;_CRT_SECURE_NO_DEPRECATE;_TIMESPEC_DEFINED |
sync and async with libuv | AS_USE_LIBUV;USING_UV_SHARED;AS_SHARED_IMPORT;_CRT_SECURE_NO_DEPRECATE;_TIMESPEC_DEFINED |
sync and async with libevent | AS_USE_LIBEVENT;EVENT__NEED_DLLIMPORT;AS_SHARED_IMPORT;_CRT_SECURE_NO_DEPRECATE;_TIMESPEC_DEFINED |
-
Disable 4996 warning.
-
Use aerospike.lib and optional async library (libuv.lib or event_core.lib) and define directory where these libraries exists.