Schema-less
no schema, store whatever you like
// C# examples coming soon
// Java examples coming soon
// Init mishmash io
var mishmash = new Mishmash();
// store some data
mishmash.fibonacci = [0, 1, 1, 2, 3, 5, 8];
// add a user
mishmash.users[id++] = {
login: "username",
password: "password"
};
// PHP examples coming soon
# Init mishmash io
mishmash = Mishmash()
# store some data
mishmash.fibonacci = [0, 1, 1, 2, 3, 5, 8]
# add a user
mishmash.users[uid+1] = {
"login": "username",
"password": "password"
}
# Ruby examples coming soon
// C# examples coming soon
// Java examples coming soon
// Initialize some local variables
teamA = 'Everton';
teamB = 'Huddersfield';
// submit an entire algorithm
res = mishmash.fixtures(function(data) {
// executed remotely in parallel
for (f of data) {
if (f.homeTeam === teamA &&
f.awayTeam === teamB) {
// all data is in variables
// add statements,
// call functions
// and more
}
}
return 42;
})
// PHP examples coming soon
# Initialize some local variables
teamA = 'Everton'
teamB = 'Huddersfield'
# submit an entire algorithm
def algorithm(data):
# executed remotely in parallel
if data.homeTeam == teamA and data.awayTeam == teamB:
# all data is in variables
# add statements,
# call functions
# and more
return 42
res = mishmash.fixtures(algorithm)
# Ruby examples coming soon
mishmash io is available as a fully-integrated solution on major cloud providers where it can be deployed with complete automation.
On-Premise setups are also supported, as well as free environments to experiment with and learn about mishmash io.
Click on an item below to get mishmash io:
Install dependencies
$ pip install mishmash-io-client
...
$ npm install @mishmash-io/mishmash-io-client
...
Get started with your programming language
Browse a growing list of integrations to support your Data Science, DevOps, MLOps and other activities