Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unit testing for Aerospike

Is there any in-memory mock server available for Aerospike Unit Testing? Currently I have vagrant setup on my local to run aerospike but that might not be available on our build servers. How should I unit test otherwise?

like image 638
dejavu Avatar asked Dec 18 '22 21:12

dejavu


1 Answers

Have you looked into Docker? It's a pretty useful tool for creating a self contained environment and managing resource usage. It also runs well with Vagrant so you can build containers in your development environment and port them easily for testing

like image 138
Ben Bates Avatar answered Jan 09 '23 15:01

Ben Bates