├── .build.yml ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── Makefile ├── README.md ├── examples ├── Makefile ├── README.md ├── async_examples │ ├── Makefile │ ├── async_batch_get │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── async_delay_queue │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── async_get │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── async_query │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── async_scan │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ └── async_transaction │ │ ├── Makefile │ │ └── src │ │ └── main │ │ └── example.c ├── basic_examples │ ├── Makefile │ ├── append │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── connect │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── expire │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── generation │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── get │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── incr │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── list │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── map │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── put │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── touch │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ ├── transaction │ │ ├── Makefile │ │ └── src │ │ │ └── main │ │ │ └── example.c │ └── udf │ │ ├── Makefile │ │ └── src │ │ ├── lua │ │ └── basic_udf.lua │ │ └── main │ │ └── example.c ├── batch_examples │ ├── Makefile │ └── get │ │ ├── Makefile │ │ └── src │ │ └── main │ │ └── example.c ├── geospatial_examples │ ├── Makefile │ ├── filter │ │ ├── Makefile │ │ ├── geospatial_simple.png │ │ └── src │ │ │ ├── lua │ │ │ └── geo_filter_amen.lua │ │ │ └── main │ │ │ └── example.c │ └── simple │ │ ├── Makefile │ │ ├── geospatial_simple.png │ │ └── src │ │ └── main │ │ └── example.c ├── project │ └── Makefile ├── query_examples │ ├── Makefile │ ├── aggregate │ │ ├── Makefile │ │ └── src │ │ │ ├── lua │ │ │ └── query_udf.lua │ │ │ └── main │ │ │ └── example.c │ └── simple │ │ ├── Makefile │ │ └── src │ │ └── main │ │ └── example.c ├── scan_examples │ ├── Makefile │ ├── background │ │ ├── Makefile │ │ └── src │ │ │ ├── lua │ │ │ └── bg_scan_udf.lua │ │ │ └── main │ │ │ └── example.c │ └── standard │ │ ├── Makefile │ │ └── src │ │ └── main │ │ └── example.c └── utils │ └── src │ ├── include │ └── example_utils.h │ └── main │ └── example_utils.c ├── install_libev ├── install_libevent ├── install_libuv ├── pkg ├── README.md ├── deb │ ├── client-devel.spec │ ├── client.spec │ └── postinst.client ├── install ├── package ├── package_src ├── package_type ├── platform ├── rpm │ ├── client-devel.spec │ └── client.spec ├── set_version └── version ├── project ├── aerospike_logo.png ├── doxyfile ├── doxygen-awesome-sidebar-only.css ├── doxygen-awesome.css ├── header.html ├── layout.xml ├── modules.mk ├── rules.mk ├── settings.mk └── test.mk ├── src ├── include │ └── aerospike │ │ ├── aerospike.h │ │ ├── aerospike_batch.h │ │ ├── aerospike_index.h │ │ ├── aerospike_info.h │ │ ├── aerospike_key.h │ │ ├── aerospike_query.h │ │ ├── aerospike_scan.h │ │ ├── aerospike_stats.h │ │ ├── aerospike_txn.h │ │ ├── aerospike_udf.h │ │ ├── as_address.h │ │ ├── as_admin.h │ │ ├── as_async.h │ │ ├── as_async_proto.h │ │ ├── as_batch.h │ │ ├── as_bin.h │ │ ├── as_bit_operations.h │ │ ├── as_cdt_ctx.h │ │ ├── as_cdt_internal.h │ │ ├── as_cdt_order.h │ │ ├── as_cluster.h │ │ ├── as_command.h │ │ ├── as_config.h │ │ ├── as_config_file.h │ │ ├── as_conn_pool.h │ │ ├── as_conn_recover.h │ │ ├── as_cpu.h │ │ ├── as_error.h │ │ ├── as_event.h │ │ ├── as_event_internal.h │ │ ├── as_exp.h │ │ ├── as_exp_operations.h │ │ ├── as_file.h │ │ ├── as_hll_operations.h │ │ ├── as_host.h │ │ ├── as_info.h │ │ ├── as_job.h │ │ ├── as_key.h │ │ ├── as_latency.h │ │ ├── as_list_operations.h │ │ ├── as_listener.h │ │ ├── as_lookup.h │ │ ├── as_map_operations.h │ │ ├── as_metrics.h │ │ ├── as_metrics_writer.h │ │ ├── as_node.h │ │ ├── as_operations.h │ │ ├── as_partition.h │ │ ├── as_partition_filter.h │ │ ├── as_partition_tracker.h │ │ ├── as_peers.h │ │ ├── as_pipe.h │ │ ├── as_policy.h │ │ ├── as_poll.h │ │ ├── as_proto.h │ │ ├── as_query.h │ │ ├── as_query_validate.h │ │ ├── as_record.h │ │ ├── as_record_iterator.h │ │ ├── as_scan.h │ │ ├── as_shm_cluster.h │ │ ├── as_socket.h │ │ ├── as_status.h │ │ ├── as_tls.h │ │ ├── as_txn.h │ │ ├── as_txn_monitor.h │ │ ├── as_udf.h │ │ ├── as_version.h │ │ └── version.h ├── main │ └── aerospike │ │ ├── .gitignore │ │ ├── _bin.c │ │ ├── _bin.h │ │ ├── aerospike.c │ │ ├── aerospike_batch.c │ │ ├── aerospike_index.c │ │ ├── aerospike_info.c │ │ ├── aerospike_key.c │ │ ├── aerospike_query.c │ │ ├── aerospike_scan.c │ │ ├── aerospike_stats.c │ │ ├── aerospike_txn.c │ │ ├── aerospike_udf.c │ │ ├── as_address.c │ │ ├── as_admin.c │ │ ├── as_async.c │ │ ├── as_batch.c │ │ ├── as_bit_operations.c │ │ ├── as_cdt_ctx.c │ │ ├── as_cdt_internal.c │ │ ├── as_cluster.c │ │ ├── as_command.c │ │ ├── as_config.c │ │ ├── as_config_file.c │ │ ├── as_conn_recover.c │ │ ├── as_error.c │ │ ├── as_event.c │ │ ├── as_event_ev.c │ │ ├── as_event_event.c │ │ ├── as_event_none.c │ │ ├── as_event_uv.c │ │ ├── as_exp.c │ │ ├── as_exp_operations.c │ │ ├── as_hll_operations.c │ │ ├── as_host.c │ │ ├── as_info.c │ │ ├── as_job.c │ │ ├── as_key.c │ │ ├── as_latency.c │ │ ├── as_list_operations.c │ │ ├── as_lookup.c │ │ ├── as_map_operations.c │ │ ├── as_metrics.c │ │ ├── as_metrics_writer.c │ │ ├── as_node.c │ │ ├── as_operations.c │ │ ├── as_partition.c │ │ ├── as_partition_tracker.c │ │ ├── as_peers.c │ │ ├── as_pipe.c │ │ ├── as_policy.c │ │ ├── as_proto.c │ │ ├── as_query.c │ │ ├── as_query_validate.c │ │ ├── as_record.c │ │ ├── as_record_hooks.c │ │ ├── as_record_iterator.c │ │ ├── as_scan.c │ │ ├── as_shm_cluster.c │ │ ├── as_socket.c │ │ ├── as_tls.c │ │ ├── as_txn.c │ │ ├── as_txn_monitor.c │ │ ├── as_udf.c │ │ ├── as_version.c │ │ └── version.c └── test │ ├── aerospike_batch │ ├── batch.c │ └── batch_async.c │ ├── aerospike_bit │ └── bit.c │ ├── aerospike_geo │ ├── query_geospatial.c │ └── starbucks_3k.jpg │ ├── aerospike_index │ └── index_basics.c │ ├── aerospike_info │ └── info_basics.c │ ├── aerospike_key │ ├── hll_operate.c │ ├── key_apply.c │ ├── key_apply2.c │ ├── key_apply_async.c │ ├── key_basics.c │ ├── key_basics_async.c │ ├── key_operate.c │ └── key_pipeline.c │ ├── aerospike_list │ ├── list_basics.c │ └── list_basics_async.c │ ├── aerospike_map │ ├── map_basics.c │ ├── map_basics_async.c │ ├── map_index.c │ ├── map_sort.c │ └── map_udf.c │ ├── aerospike_query │ ├── query_async.c │ ├── query_background.c │ └── query_foreach.c │ ├── aerospike_scan │ ├── aerospike_scan_test.lua │ ├── scan_async.c │ └── scan_basics.c │ ├── aerospike_test.c │ ├── aerospike_test.h │ ├── aerospike_udf │ ├── udf_basics.c │ ├── udf_record.c │ └── udf_types.c │ ├── exp_operate.c │ ├── filter_exp.c │ ├── lua │ ├── client_record_basics.lua │ ├── client_record_lists.lua │ ├── client_stream_ads.lua │ ├── client_stream_simple.lua │ ├── key_apply.lua │ ├── key_apply2.lua │ ├── list_unordered.lua │ ├── query_background.lua │ ├── udf_basics.lua │ ├── udf_record.lua │ └── udf_types.lua │ ├── test.c │ ├── test.h │ ├── transaction.c │ ├── transaction_async.c │ └── util │ ├── consumer_stream.c │ ├── consumer_stream.h │ ├── index_util.c │ ├── index_util.h │ ├── info_helper.c │ ├── info_helper.h │ ├── log_helper.c │ ├── log_helper.h │ ├── map_rec.c │ ├── map_rec.h │ ├── producer_stream.c │ ├── producer_stream.h │ ├── test_aerospike.c │ ├── test_aerospike.h │ ├── udf.c │ └── udf.h ├── vs ├── README.md ├── aerospike-client-c-libevent.nuspec ├── aerospike-client-c-libevent.targets ├── aerospike-client-c-libuv.nuspec ├── aerospike-client-c-libuv.targets ├── aerospike-client-c.nuspec ├── aerospike-client-c.targets ├── aerospike-test │ ├── aerospike-test.vcxproj │ ├── aerospike-test.vcxproj.filters │ └── packages.config ├── aerospike.sln ├── aerospike │ ├── aerospike.vcxproj │ ├── aerospike.vcxproj.filters │ └── packages.config ├── examples │ ├── append │ │ ├── append.vcxproj │ │ ├── append.vcxproj.filters │ │ └── packages.config │ ├── async-batch-get │ │ ├── async-batch-get.vcxproj │ │ ├── async-batch-get.vcxproj.filters │ │ └── packages.config │ ├── async-delay-queue │ │ ├── async-delay-queue.vcxproj │ │ ├── async-delay-queue.vcxproj.filters │ │ └── packages.config │ ├── async-get │ │ ├── async-get.vcxproj │ │ ├── async-get.vcxproj.filters │ │ └── packages.config │ ├── async-query │ │ ├── async-query.vcxproj │ │ ├── async-query.vcxproj.filters │ │ └── packages.config │ ├── async-scan │ │ ├── async-scan.vcxproj │ │ ├── async-scan.vcxproj.filters │ │ └── packages.config │ ├── async-transaction │ │ ├── async-transaction.vcxproj │ │ ├── async-transaction.vcxproj.filters │ │ └── packages.config │ ├── batch-get │ │ ├── batch-get.vcxproj │ │ ├── batch-get.vcxproj.filters │ │ └── packages.config │ ├── expire │ │ ├── expire.vcxproj │ │ ├── expire.vcxproj.filters │ │ └── packages.config │ ├── generation │ │ ├── generation.vcxproj │ │ ├── generation.vcxproj.filters │ │ └── packages.config │ ├── geo-filter │ │ ├── geo-filter.vcxproj │ │ ├── geo-filter.vcxproj.filters │ │ └── packages.config │ ├── geo-simple │ │ ├── geo-simple.vcxproj │ │ ├── geo-simple.vcxproj.filters │ │ └── packages.config │ ├── get │ │ ├── get.vcxproj │ │ ├── get.vcxproj.filters │ │ └── packages.config │ ├── incr │ │ ├── incr.vcxproj │ │ ├── incr.vcxproj.filters │ │ └── packages.config │ ├── list │ │ ├── list.vcxproj │ │ ├── list.vcxproj.filters │ │ └── packages.config │ ├── map │ │ ├── map.vcxproj │ │ ├── map.vcxproj.filters │ │ └── packages.config │ ├── put │ │ ├── packages.config │ │ ├── put.vcxproj │ │ └── put.vcxproj.filters │ ├── query-aggregate │ │ ├── packages.config │ │ ├── query-aggregate.vcxproj │ │ └── query-aggregate.vcxproj.filters │ ├── query │ │ ├── packages.config │ │ ├── query.vcxproj │ │ └── query.vcxproj.filters │ ├── scan-background │ │ ├── packages.config │ │ ├── scan-background.vcxproj │ │ └── scan-background.vcxproj.filters │ ├── scan │ │ ├── packages.config │ │ ├── scan.vcxproj │ │ └── scan.vcxproj.filters │ ├── touch │ │ ├── packages.config │ │ ├── touch.vcxproj │ │ └── touch.vcxproj.filters │ ├── transaction │ │ ├── packages.config │ │ ├── transaction.vcxproj │ │ └── transaction.vcxproj.filters │ └── udf │ │ ├── packages.config │ │ ├── udf.vcxproj │ │ └── udf.vcxproj.filters ├── icon.png └── props │ ├── base.props │ ├── example.props │ ├── libevent.props │ ├── libuv.props │ └── nodejs.props └── xcode ├── aerospike-test.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── aerospike-test.xcscheme ├── aerospike.xcodeproj └── project.pbxproj ├── client.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── client.xcscmblueprint ├── examples.xcodeproj └── project.pbxproj └── prepare_xcode /.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/.build.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/README.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/async_examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/Makefile -------------------------------------------------------------------------------- /examples/async_examples/async_batch_get/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_batch_get/Makefile -------------------------------------------------------------------------------- /examples/async_examples/async_batch_get/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_batch_get/src/main/example.c -------------------------------------------------------------------------------- /examples/async_examples/async_delay_queue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_delay_queue/Makefile -------------------------------------------------------------------------------- /examples/async_examples/async_delay_queue/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_delay_queue/src/main/example.c -------------------------------------------------------------------------------- /examples/async_examples/async_get/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_get/Makefile -------------------------------------------------------------------------------- /examples/async_examples/async_get/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_get/src/main/example.c -------------------------------------------------------------------------------- /examples/async_examples/async_query/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_query/Makefile -------------------------------------------------------------------------------- /examples/async_examples/async_query/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_query/src/main/example.c -------------------------------------------------------------------------------- /examples/async_examples/async_scan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_scan/Makefile -------------------------------------------------------------------------------- /examples/async_examples/async_scan/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_scan/src/main/example.c -------------------------------------------------------------------------------- /examples/async_examples/async_transaction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_transaction/Makefile -------------------------------------------------------------------------------- /examples/async_examples/async_transaction/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/async_examples/async_transaction/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/append/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/append/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/append/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/append/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/connect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/connect/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/connect/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/connect/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/expire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/expire/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/expire/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/expire/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/generation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/generation/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/generation/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/generation/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/get/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/get/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/get/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/get/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/incr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/incr/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/incr/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/incr/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/list/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/list/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/list/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/list/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/map/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/map/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/map/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/put/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/put/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/put/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/put/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/touch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/touch/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/touch/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/touch/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/transaction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/transaction/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/transaction/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/transaction/src/main/example.c -------------------------------------------------------------------------------- /examples/basic_examples/udf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/udf/Makefile -------------------------------------------------------------------------------- /examples/basic_examples/udf/src/lua/basic_udf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/udf/src/lua/basic_udf.lua -------------------------------------------------------------------------------- /examples/basic_examples/udf/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/basic_examples/udf/src/main/example.c -------------------------------------------------------------------------------- /examples/batch_examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/batch_examples/Makefile -------------------------------------------------------------------------------- /examples/batch_examples/get/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/batch_examples/get/Makefile -------------------------------------------------------------------------------- /examples/batch_examples/get/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/batch_examples/get/src/main/example.c -------------------------------------------------------------------------------- /examples/geospatial_examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/geospatial_examples/Makefile -------------------------------------------------------------------------------- /examples/geospatial_examples/filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/geospatial_examples/filter/Makefile -------------------------------------------------------------------------------- /examples/geospatial_examples/filter/geospatial_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/geospatial_examples/filter/geospatial_simple.png -------------------------------------------------------------------------------- /examples/geospatial_examples/filter/src/lua/geo_filter_amen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/geospatial_examples/filter/src/lua/geo_filter_amen.lua -------------------------------------------------------------------------------- /examples/geospatial_examples/filter/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/geospatial_examples/filter/src/main/example.c -------------------------------------------------------------------------------- /examples/geospatial_examples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/geospatial_examples/simple/Makefile -------------------------------------------------------------------------------- /examples/geospatial_examples/simple/geospatial_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/geospatial_examples/simple/geospatial_simple.png -------------------------------------------------------------------------------- /examples/geospatial_examples/simple/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/geospatial_examples/simple/src/main/example.c -------------------------------------------------------------------------------- /examples/project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/project/Makefile -------------------------------------------------------------------------------- /examples/query_examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/query_examples/Makefile -------------------------------------------------------------------------------- /examples/query_examples/aggregate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/query_examples/aggregate/Makefile -------------------------------------------------------------------------------- /examples/query_examples/aggregate/src/lua/query_udf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/query_examples/aggregate/src/lua/query_udf.lua -------------------------------------------------------------------------------- /examples/query_examples/aggregate/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/query_examples/aggregate/src/main/example.c -------------------------------------------------------------------------------- /examples/query_examples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/query_examples/simple/Makefile -------------------------------------------------------------------------------- /examples/query_examples/simple/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/query_examples/simple/src/main/example.c -------------------------------------------------------------------------------- /examples/scan_examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/scan_examples/Makefile -------------------------------------------------------------------------------- /examples/scan_examples/background/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/scan_examples/background/Makefile -------------------------------------------------------------------------------- /examples/scan_examples/background/src/lua/bg_scan_udf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/scan_examples/background/src/lua/bg_scan_udf.lua -------------------------------------------------------------------------------- /examples/scan_examples/background/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/scan_examples/background/src/main/example.c -------------------------------------------------------------------------------- /examples/scan_examples/standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/scan_examples/standard/Makefile -------------------------------------------------------------------------------- /examples/scan_examples/standard/src/main/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/scan_examples/standard/src/main/example.c -------------------------------------------------------------------------------- /examples/utils/src/include/example_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/utils/src/include/example_utils.h -------------------------------------------------------------------------------- /examples/utils/src/main/example_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/examples/utils/src/main/example_utils.c -------------------------------------------------------------------------------- /install_libev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/install_libev -------------------------------------------------------------------------------- /install_libevent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/install_libevent -------------------------------------------------------------------------------- /install_libuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/install_libuv -------------------------------------------------------------------------------- /pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/README.md -------------------------------------------------------------------------------- /pkg/deb/client-devel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/deb/client-devel.spec -------------------------------------------------------------------------------- /pkg/deb/client.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/deb/client.spec -------------------------------------------------------------------------------- /pkg/deb/postinst.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/deb/postinst.client -------------------------------------------------------------------------------- /pkg/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/install -------------------------------------------------------------------------------- /pkg/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/package -------------------------------------------------------------------------------- /pkg/package_src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/package_src -------------------------------------------------------------------------------- /pkg/package_type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/package_type -------------------------------------------------------------------------------- /pkg/platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/platform -------------------------------------------------------------------------------- /pkg/rpm/client-devel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/rpm/client-devel.spec -------------------------------------------------------------------------------- /pkg/rpm/client.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/rpm/client.spec -------------------------------------------------------------------------------- /pkg/set_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/set_version -------------------------------------------------------------------------------- /pkg/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/pkg/version -------------------------------------------------------------------------------- /project/aerospike_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/aerospike_logo.png -------------------------------------------------------------------------------- /project/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/doxyfile -------------------------------------------------------------------------------- /project/doxygen-awesome-sidebar-only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/doxygen-awesome-sidebar-only.css -------------------------------------------------------------------------------- /project/doxygen-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/doxygen-awesome.css -------------------------------------------------------------------------------- /project/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/header.html -------------------------------------------------------------------------------- /project/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/layout.xml -------------------------------------------------------------------------------- /project/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/modules.mk -------------------------------------------------------------------------------- /project/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/rules.mk -------------------------------------------------------------------------------- /project/settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/settings.mk -------------------------------------------------------------------------------- /project/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/project/test.mk -------------------------------------------------------------------------------- /src/include/aerospike/aerospike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_batch.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_index.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_info.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_key.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_query.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_scan.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_stats.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_txn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_txn.h -------------------------------------------------------------------------------- /src/include/aerospike/aerospike_udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/aerospike_udf.h -------------------------------------------------------------------------------- /src/include/aerospike/as_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_address.h -------------------------------------------------------------------------------- /src/include/aerospike/as_admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_admin.h -------------------------------------------------------------------------------- /src/include/aerospike/as_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_async.h -------------------------------------------------------------------------------- /src/include/aerospike/as_async_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_async_proto.h -------------------------------------------------------------------------------- /src/include/aerospike/as_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_batch.h -------------------------------------------------------------------------------- /src/include/aerospike/as_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_bin.h -------------------------------------------------------------------------------- /src/include/aerospike/as_bit_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_bit_operations.h -------------------------------------------------------------------------------- /src/include/aerospike/as_cdt_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_cdt_ctx.h -------------------------------------------------------------------------------- /src/include/aerospike/as_cdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_cdt_internal.h -------------------------------------------------------------------------------- /src/include/aerospike/as_cdt_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_cdt_order.h -------------------------------------------------------------------------------- /src/include/aerospike/as_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_cluster.h -------------------------------------------------------------------------------- /src/include/aerospike/as_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_command.h -------------------------------------------------------------------------------- /src/include/aerospike/as_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_config.h -------------------------------------------------------------------------------- /src/include/aerospike/as_config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_config_file.h -------------------------------------------------------------------------------- /src/include/aerospike/as_conn_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_conn_pool.h -------------------------------------------------------------------------------- /src/include/aerospike/as_conn_recover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_conn_recover.h -------------------------------------------------------------------------------- /src/include/aerospike/as_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_cpu.h -------------------------------------------------------------------------------- /src/include/aerospike/as_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_error.h -------------------------------------------------------------------------------- /src/include/aerospike/as_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_event.h -------------------------------------------------------------------------------- /src/include/aerospike/as_event_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_event_internal.h -------------------------------------------------------------------------------- /src/include/aerospike/as_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_exp.h -------------------------------------------------------------------------------- /src/include/aerospike/as_exp_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_exp_operations.h -------------------------------------------------------------------------------- /src/include/aerospike/as_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_file.h -------------------------------------------------------------------------------- /src/include/aerospike/as_hll_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_hll_operations.h -------------------------------------------------------------------------------- /src/include/aerospike/as_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_host.h -------------------------------------------------------------------------------- /src/include/aerospike/as_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_info.h -------------------------------------------------------------------------------- /src/include/aerospike/as_job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_job.h -------------------------------------------------------------------------------- /src/include/aerospike/as_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_key.h -------------------------------------------------------------------------------- /src/include/aerospike/as_latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_latency.h -------------------------------------------------------------------------------- /src/include/aerospike/as_list_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_list_operations.h -------------------------------------------------------------------------------- /src/include/aerospike/as_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_listener.h -------------------------------------------------------------------------------- /src/include/aerospike/as_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_lookup.h -------------------------------------------------------------------------------- /src/include/aerospike/as_map_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_map_operations.h -------------------------------------------------------------------------------- /src/include/aerospike/as_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_metrics.h -------------------------------------------------------------------------------- /src/include/aerospike/as_metrics_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_metrics_writer.h -------------------------------------------------------------------------------- /src/include/aerospike/as_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_node.h -------------------------------------------------------------------------------- /src/include/aerospike/as_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_operations.h -------------------------------------------------------------------------------- /src/include/aerospike/as_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_partition.h -------------------------------------------------------------------------------- /src/include/aerospike/as_partition_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_partition_filter.h -------------------------------------------------------------------------------- /src/include/aerospike/as_partition_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_partition_tracker.h -------------------------------------------------------------------------------- /src/include/aerospike/as_peers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_peers.h -------------------------------------------------------------------------------- /src/include/aerospike/as_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_pipe.h -------------------------------------------------------------------------------- /src/include/aerospike/as_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_policy.h -------------------------------------------------------------------------------- /src/include/aerospike/as_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_poll.h -------------------------------------------------------------------------------- /src/include/aerospike/as_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_proto.h -------------------------------------------------------------------------------- /src/include/aerospike/as_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_query.h -------------------------------------------------------------------------------- /src/include/aerospike/as_query_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_query_validate.h -------------------------------------------------------------------------------- /src/include/aerospike/as_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_record.h -------------------------------------------------------------------------------- /src/include/aerospike/as_record_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_record_iterator.h -------------------------------------------------------------------------------- /src/include/aerospike/as_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_scan.h -------------------------------------------------------------------------------- /src/include/aerospike/as_shm_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_shm_cluster.h -------------------------------------------------------------------------------- /src/include/aerospike/as_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_socket.h -------------------------------------------------------------------------------- /src/include/aerospike/as_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_status.h -------------------------------------------------------------------------------- /src/include/aerospike/as_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_tls.h -------------------------------------------------------------------------------- /src/include/aerospike/as_txn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_txn.h -------------------------------------------------------------------------------- /src/include/aerospike/as_txn_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_txn_monitor.h -------------------------------------------------------------------------------- /src/include/aerospike/as_udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_udf.h -------------------------------------------------------------------------------- /src/include/aerospike/as_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/as_version.h -------------------------------------------------------------------------------- /src/include/aerospike/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/include/aerospike/version.h -------------------------------------------------------------------------------- /src/main/aerospike/.gitignore: -------------------------------------------------------------------------------- 1 | /probes.h 2 | -------------------------------------------------------------------------------- /src/main/aerospike/_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/_bin.c -------------------------------------------------------------------------------- /src/main/aerospike/_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/_bin.h -------------------------------------------------------------------------------- /src/main/aerospike/aerospike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_batch.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_index.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_info.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_key.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_query.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_scan.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_stats.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_txn.c -------------------------------------------------------------------------------- /src/main/aerospike/aerospike_udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/aerospike_udf.c -------------------------------------------------------------------------------- /src/main/aerospike/as_address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_address.c -------------------------------------------------------------------------------- /src/main/aerospike/as_admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_admin.c -------------------------------------------------------------------------------- /src/main/aerospike/as_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_async.c -------------------------------------------------------------------------------- /src/main/aerospike/as_batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_batch.c -------------------------------------------------------------------------------- /src/main/aerospike/as_bit_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_bit_operations.c -------------------------------------------------------------------------------- /src/main/aerospike/as_cdt_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_cdt_ctx.c -------------------------------------------------------------------------------- /src/main/aerospike/as_cdt_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_cdt_internal.c -------------------------------------------------------------------------------- /src/main/aerospike/as_cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_cluster.c -------------------------------------------------------------------------------- /src/main/aerospike/as_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_command.c -------------------------------------------------------------------------------- /src/main/aerospike/as_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_config.c -------------------------------------------------------------------------------- /src/main/aerospike/as_config_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_config_file.c -------------------------------------------------------------------------------- /src/main/aerospike/as_conn_recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_conn_recover.c -------------------------------------------------------------------------------- /src/main/aerospike/as_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_error.c -------------------------------------------------------------------------------- /src/main/aerospike/as_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_event.c -------------------------------------------------------------------------------- /src/main/aerospike/as_event_ev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_event_ev.c -------------------------------------------------------------------------------- /src/main/aerospike/as_event_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_event_event.c -------------------------------------------------------------------------------- /src/main/aerospike/as_event_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_event_none.c -------------------------------------------------------------------------------- /src/main/aerospike/as_event_uv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_event_uv.c -------------------------------------------------------------------------------- /src/main/aerospike/as_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_exp.c -------------------------------------------------------------------------------- /src/main/aerospike/as_exp_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_exp_operations.c -------------------------------------------------------------------------------- /src/main/aerospike/as_hll_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_hll_operations.c -------------------------------------------------------------------------------- /src/main/aerospike/as_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_host.c -------------------------------------------------------------------------------- /src/main/aerospike/as_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_info.c -------------------------------------------------------------------------------- /src/main/aerospike/as_job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_job.c -------------------------------------------------------------------------------- /src/main/aerospike/as_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_key.c -------------------------------------------------------------------------------- /src/main/aerospike/as_latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_latency.c -------------------------------------------------------------------------------- /src/main/aerospike/as_list_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_list_operations.c -------------------------------------------------------------------------------- /src/main/aerospike/as_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_lookup.c -------------------------------------------------------------------------------- /src/main/aerospike/as_map_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_map_operations.c -------------------------------------------------------------------------------- /src/main/aerospike/as_metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_metrics.c -------------------------------------------------------------------------------- /src/main/aerospike/as_metrics_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_metrics_writer.c -------------------------------------------------------------------------------- /src/main/aerospike/as_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_node.c -------------------------------------------------------------------------------- /src/main/aerospike/as_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_operations.c -------------------------------------------------------------------------------- /src/main/aerospike/as_partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_partition.c -------------------------------------------------------------------------------- /src/main/aerospike/as_partition_tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_partition_tracker.c -------------------------------------------------------------------------------- /src/main/aerospike/as_peers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_peers.c -------------------------------------------------------------------------------- /src/main/aerospike/as_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_pipe.c -------------------------------------------------------------------------------- /src/main/aerospike/as_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_policy.c -------------------------------------------------------------------------------- /src/main/aerospike/as_proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_proto.c -------------------------------------------------------------------------------- /src/main/aerospike/as_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_query.c -------------------------------------------------------------------------------- /src/main/aerospike/as_query_validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_query_validate.c -------------------------------------------------------------------------------- /src/main/aerospike/as_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_record.c -------------------------------------------------------------------------------- /src/main/aerospike/as_record_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_record_hooks.c -------------------------------------------------------------------------------- /src/main/aerospike/as_record_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_record_iterator.c -------------------------------------------------------------------------------- /src/main/aerospike/as_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_scan.c -------------------------------------------------------------------------------- /src/main/aerospike/as_shm_cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_shm_cluster.c -------------------------------------------------------------------------------- /src/main/aerospike/as_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_socket.c -------------------------------------------------------------------------------- /src/main/aerospike/as_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_tls.c -------------------------------------------------------------------------------- /src/main/aerospike/as_txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_txn.c -------------------------------------------------------------------------------- /src/main/aerospike/as_txn_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_txn_monitor.c -------------------------------------------------------------------------------- /src/main/aerospike/as_udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_udf.c -------------------------------------------------------------------------------- /src/main/aerospike/as_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/as_version.c -------------------------------------------------------------------------------- /src/main/aerospike/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/main/aerospike/version.c -------------------------------------------------------------------------------- /src/test/aerospike_batch/batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_batch/batch.c -------------------------------------------------------------------------------- /src/test/aerospike_batch/batch_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_batch/batch_async.c -------------------------------------------------------------------------------- /src/test/aerospike_bit/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_bit/bit.c -------------------------------------------------------------------------------- /src/test/aerospike_geo/query_geospatial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_geo/query_geospatial.c -------------------------------------------------------------------------------- /src/test/aerospike_geo/starbucks_3k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_geo/starbucks_3k.jpg -------------------------------------------------------------------------------- /src/test/aerospike_index/index_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_index/index_basics.c -------------------------------------------------------------------------------- /src/test/aerospike_info/info_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_info/info_basics.c -------------------------------------------------------------------------------- /src/test/aerospike_key/hll_operate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_key/hll_operate.c -------------------------------------------------------------------------------- /src/test/aerospike_key/key_apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_key/key_apply.c -------------------------------------------------------------------------------- /src/test/aerospike_key/key_apply2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_key/key_apply2.c -------------------------------------------------------------------------------- /src/test/aerospike_key/key_apply_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_key/key_apply_async.c -------------------------------------------------------------------------------- /src/test/aerospike_key/key_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_key/key_basics.c -------------------------------------------------------------------------------- /src/test/aerospike_key/key_basics_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_key/key_basics_async.c -------------------------------------------------------------------------------- /src/test/aerospike_key/key_operate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_key/key_operate.c -------------------------------------------------------------------------------- /src/test/aerospike_key/key_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_key/key_pipeline.c -------------------------------------------------------------------------------- /src/test/aerospike_list/list_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_list/list_basics.c -------------------------------------------------------------------------------- /src/test/aerospike_list/list_basics_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_list/list_basics_async.c -------------------------------------------------------------------------------- /src/test/aerospike_map/map_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_map/map_basics.c -------------------------------------------------------------------------------- /src/test/aerospike_map/map_basics_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_map/map_basics_async.c -------------------------------------------------------------------------------- /src/test/aerospike_map/map_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_map/map_index.c -------------------------------------------------------------------------------- /src/test/aerospike_map/map_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_map/map_sort.c -------------------------------------------------------------------------------- /src/test/aerospike_map/map_udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_map/map_udf.c -------------------------------------------------------------------------------- /src/test/aerospike_query/query_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_query/query_async.c -------------------------------------------------------------------------------- /src/test/aerospike_query/query_background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_query/query_background.c -------------------------------------------------------------------------------- /src/test/aerospike_query/query_foreach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_query/query_foreach.c -------------------------------------------------------------------------------- /src/test/aerospike_scan/aerospike_scan_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_scan/aerospike_scan_test.lua -------------------------------------------------------------------------------- /src/test/aerospike_scan/scan_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_scan/scan_async.c -------------------------------------------------------------------------------- /src/test/aerospike_scan/scan_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_scan/scan_basics.c -------------------------------------------------------------------------------- /src/test/aerospike_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_test.c -------------------------------------------------------------------------------- /src/test/aerospike_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_test.h -------------------------------------------------------------------------------- /src/test/aerospike_udf/udf_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_udf/udf_basics.c -------------------------------------------------------------------------------- /src/test/aerospike_udf/udf_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_udf/udf_record.c -------------------------------------------------------------------------------- /src/test/aerospike_udf/udf_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/aerospike_udf/udf_types.c -------------------------------------------------------------------------------- /src/test/exp_operate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/exp_operate.c -------------------------------------------------------------------------------- /src/test/filter_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/filter_exp.c -------------------------------------------------------------------------------- /src/test/lua/client_record_basics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/client_record_basics.lua -------------------------------------------------------------------------------- /src/test/lua/client_record_lists.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/client_record_lists.lua -------------------------------------------------------------------------------- /src/test/lua/client_stream_ads.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/client_stream_ads.lua -------------------------------------------------------------------------------- /src/test/lua/client_stream_simple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/client_stream_simple.lua -------------------------------------------------------------------------------- /src/test/lua/key_apply.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/key_apply.lua -------------------------------------------------------------------------------- /src/test/lua/key_apply2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/key_apply2.lua -------------------------------------------------------------------------------- /src/test/lua/list_unordered.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/list_unordered.lua -------------------------------------------------------------------------------- /src/test/lua/query_background.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/query_background.lua -------------------------------------------------------------------------------- /src/test/lua/udf_basics.lua: -------------------------------------------------------------------------------- 1 | 2 | function udf_basics() 3 | return 1 4 | end 5 | -------------------------------------------------------------------------------- /src/test/lua/udf_record.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/udf_record.lua -------------------------------------------------------------------------------- /src/test/lua/udf_types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/lua/udf_types.lua -------------------------------------------------------------------------------- /src/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/test.c -------------------------------------------------------------------------------- /src/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/test.h -------------------------------------------------------------------------------- /src/test/transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/transaction.c -------------------------------------------------------------------------------- /src/test/transaction_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/transaction_async.c -------------------------------------------------------------------------------- /src/test/util/consumer_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/consumer_stream.c -------------------------------------------------------------------------------- /src/test/util/consumer_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/consumer_stream.h -------------------------------------------------------------------------------- /src/test/util/index_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/index_util.c -------------------------------------------------------------------------------- /src/test/util/index_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/index_util.h -------------------------------------------------------------------------------- /src/test/util/info_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/info_helper.c -------------------------------------------------------------------------------- /src/test/util/info_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/info_helper.h -------------------------------------------------------------------------------- /src/test/util/log_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/log_helper.c -------------------------------------------------------------------------------- /src/test/util/log_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/log_helper.h -------------------------------------------------------------------------------- /src/test/util/map_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/map_rec.c -------------------------------------------------------------------------------- /src/test/util/map_rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/map_rec.h -------------------------------------------------------------------------------- /src/test/util/producer_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/producer_stream.c -------------------------------------------------------------------------------- /src/test/util/producer_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/producer_stream.h -------------------------------------------------------------------------------- /src/test/util/test_aerospike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/test_aerospike.c -------------------------------------------------------------------------------- /src/test/util/test_aerospike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/test_aerospike.h -------------------------------------------------------------------------------- /src/test/util/udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/udf.c -------------------------------------------------------------------------------- /src/test/util/udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/src/test/util/udf.h -------------------------------------------------------------------------------- /vs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/README.md -------------------------------------------------------------------------------- /vs/aerospike-client-c-libevent.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-client-c-libevent.nuspec -------------------------------------------------------------------------------- /vs/aerospike-client-c-libevent.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-client-c-libevent.targets -------------------------------------------------------------------------------- /vs/aerospike-client-c-libuv.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-client-c-libuv.nuspec -------------------------------------------------------------------------------- /vs/aerospike-client-c-libuv.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-client-c-libuv.targets -------------------------------------------------------------------------------- /vs/aerospike-client-c.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-client-c.nuspec -------------------------------------------------------------------------------- /vs/aerospike-client-c.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-client-c.targets -------------------------------------------------------------------------------- /vs/aerospike-test/aerospike-test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-test/aerospike-test.vcxproj -------------------------------------------------------------------------------- /vs/aerospike-test/aerospike-test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-test/aerospike-test.vcxproj.filters -------------------------------------------------------------------------------- /vs/aerospike-test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike-test/packages.config -------------------------------------------------------------------------------- /vs/aerospike.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike.sln -------------------------------------------------------------------------------- /vs/aerospike/aerospike.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike/aerospike.vcxproj -------------------------------------------------------------------------------- /vs/aerospike/aerospike.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike/aerospike.vcxproj.filters -------------------------------------------------------------------------------- /vs/aerospike/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/aerospike/packages.config -------------------------------------------------------------------------------- /vs/examples/append/append.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/append/append.vcxproj -------------------------------------------------------------------------------- /vs/examples/append/append.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/append/append.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/append/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/append/packages.config -------------------------------------------------------------------------------- /vs/examples/async-batch-get/async-batch-get.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-batch-get/async-batch-get.vcxproj -------------------------------------------------------------------------------- /vs/examples/async-batch-get/async-batch-get.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-batch-get/async-batch-get.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/async-batch-get/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-batch-get/packages.config -------------------------------------------------------------------------------- /vs/examples/async-delay-queue/async-delay-queue.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-delay-queue/async-delay-queue.vcxproj -------------------------------------------------------------------------------- /vs/examples/async-delay-queue/async-delay-queue.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-delay-queue/async-delay-queue.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/async-delay-queue/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-delay-queue/packages.config -------------------------------------------------------------------------------- /vs/examples/async-get/async-get.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-get/async-get.vcxproj -------------------------------------------------------------------------------- /vs/examples/async-get/async-get.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-get/async-get.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/async-get/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-get/packages.config -------------------------------------------------------------------------------- /vs/examples/async-query/async-query.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-query/async-query.vcxproj -------------------------------------------------------------------------------- /vs/examples/async-query/async-query.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-query/async-query.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/async-query/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-query/packages.config -------------------------------------------------------------------------------- /vs/examples/async-scan/async-scan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-scan/async-scan.vcxproj -------------------------------------------------------------------------------- /vs/examples/async-scan/async-scan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-scan/async-scan.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/async-scan/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-scan/packages.config -------------------------------------------------------------------------------- /vs/examples/async-transaction/async-transaction.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-transaction/async-transaction.vcxproj -------------------------------------------------------------------------------- /vs/examples/async-transaction/async-transaction.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-transaction/async-transaction.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/async-transaction/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/async-transaction/packages.config -------------------------------------------------------------------------------- /vs/examples/batch-get/batch-get.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/batch-get/batch-get.vcxproj -------------------------------------------------------------------------------- /vs/examples/batch-get/batch-get.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/batch-get/batch-get.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/batch-get/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/batch-get/packages.config -------------------------------------------------------------------------------- /vs/examples/expire/expire.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/expire/expire.vcxproj -------------------------------------------------------------------------------- /vs/examples/expire/expire.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/expire/expire.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/expire/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/expire/packages.config -------------------------------------------------------------------------------- /vs/examples/generation/generation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/generation/generation.vcxproj -------------------------------------------------------------------------------- /vs/examples/generation/generation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/generation/generation.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/generation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/generation/packages.config -------------------------------------------------------------------------------- /vs/examples/geo-filter/geo-filter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/geo-filter/geo-filter.vcxproj -------------------------------------------------------------------------------- /vs/examples/geo-filter/geo-filter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/geo-filter/geo-filter.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/geo-filter/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/geo-filter/packages.config -------------------------------------------------------------------------------- /vs/examples/geo-simple/geo-simple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/geo-simple/geo-simple.vcxproj -------------------------------------------------------------------------------- /vs/examples/geo-simple/geo-simple.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/geo-simple/geo-simple.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/geo-simple/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/geo-simple/packages.config -------------------------------------------------------------------------------- /vs/examples/get/get.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/get/get.vcxproj -------------------------------------------------------------------------------- /vs/examples/get/get.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/get/get.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/get/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/get/packages.config -------------------------------------------------------------------------------- /vs/examples/incr/incr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/incr/incr.vcxproj -------------------------------------------------------------------------------- /vs/examples/incr/incr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/incr/incr.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/incr/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/incr/packages.config -------------------------------------------------------------------------------- /vs/examples/list/list.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/list/list.vcxproj -------------------------------------------------------------------------------- /vs/examples/list/list.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/list/list.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/list/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/list/packages.config -------------------------------------------------------------------------------- /vs/examples/map/map.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/map/map.vcxproj -------------------------------------------------------------------------------- /vs/examples/map/map.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/map/map.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/map/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/map/packages.config -------------------------------------------------------------------------------- /vs/examples/put/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/put/packages.config -------------------------------------------------------------------------------- /vs/examples/put/put.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/put/put.vcxproj -------------------------------------------------------------------------------- /vs/examples/put/put.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/put/put.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/query-aggregate/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/query-aggregate/packages.config -------------------------------------------------------------------------------- /vs/examples/query-aggregate/query-aggregate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/query-aggregate/query-aggregate.vcxproj -------------------------------------------------------------------------------- /vs/examples/query-aggregate/query-aggregate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/query-aggregate/query-aggregate.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/query/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/query/packages.config -------------------------------------------------------------------------------- /vs/examples/query/query.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/query/query.vcxproj -------------------------------------------------------------------------------- /vs/examples/query/query.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/query/query.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/scan-background/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/scan-background/packages.config -------------------------------------------------------------------------------- /vs/examples/scan-background/scan-background.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/scan-background/scan-background.vcxproj -------------------------------------------------------------------------------- /vs/examples/scan-background/scan-background.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/scan-background/scan-background.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/scan/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/scan/packages.config -------------------------------------------------------------------------------- /vs/examples/scan/scan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/scan/scan.vcxproj -------------------------------------------------------------------------------- /vs/examples/scan/scan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/scan/scan.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/touch/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/touch/packages.config -------------------------------------------------------------------------------- /vs/examples/touch/touch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/touch/touch.vcxproj -------------------------------------------------------------------------------- /vs/examples/touch/touch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/touch/touch.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/transaction/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/transaction/packages.config -------------------------------------------------------------------------------- /vs/examples/transaction/transaction.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/transaction/transaction.vcxproj -------------------------------------------------------------------------------- /vs/examples/transaction/transaction.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/transaction/transaction.vcxproj.filters -------------------------------------------------------------------------------- /vs/examples/udf/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/udf/packages.config -------------------------------------------------------------------------------- /vs/examples/udf/udf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/udf/udf.vcxproj -------------------------------------------------------------------------------- /vs/examples/udf/udf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/examples/udf/udf.vcxproj.filters -------------------------------------------------------------------------------- /vs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/icon.png -------------------------------------------------------------------------------- /vs/props/base.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/props/base.props -------------------------------------------------------------------------------- /vs/props/example.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/props/example.props -------------------------------------------------------------------------------- /vs/props/libevent.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/props/libevent.props -------------------------------------------------------------------------------- /vs/props/libuv.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/props/libuv.props -------------------------------------------------------------------------------- /vs/props/nodejs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/vs/props/nodejs.props -------------------------------------------------------------------------------- /xcode/aerospike-test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/xcode/aerospike-test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode/aerospike-test.xcodeproj/xcshareddata/xcschemes/aerospike-test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/xcode/aerospike-test.xcodeproj/xcshareddata/xcschemes/aerospike-test.xcscheme -------------------------------------------------------------------------------- /xcode/aerospike.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/xcode/aerospike.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode/client.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/xcode/client.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /xcode/client.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/xcode/client.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /xcode/client.xcworkspace/xcshareddata/client.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/xcode/client.xcworkspace/xcshareddata/client.xcscmblueprint -------------------------------------------------------------------------------- /xcode/examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/xcode/examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode/prepare_xcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-client-c/HEAD/xcode/prepare_xcode --------------------------------------------------------------------------------