This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
(SELECT bins1 FROM namespace1.set1 WHERE id IN key-list1) UNION (SELECT bins2 FROM namespace2.set2 WHERE id IN key-list2) UNION ... | void Client::get(BatchPolicy policy, List<BatchRead> records) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
CREATE StoredProcedure | Client::register(Policy policy, String clientPath, String serverPath, Language.LUA) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
DROP Index | dropIndex(Policy policy, String namespace, String setName, String indexName) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
CREATE Index | createIndex(Policy policy, String namespace, String setName, String indexName, String binName,IndexType indexType) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
TRUNCATE namespace.set | void Client::truncate(policy, namespace, set, beforeLastUpdate=null) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
TRUNCATE namespace | void Client::truncate(policy, namespace, set=null, beforeLastUpdate=null) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
SELECT fn1(bin1), …FROM namespace.set WHERE id=key + UPDATE namespace.set SET (bin1=fn_n(bin_n), ...) WHERE id=key | Record Client::operate( WritePolicy policy, Key key, Operation... operations) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
EXEC StoredProcedure @arg1 = val1, @arg2 = val2, … | Object Client::execute(WritePolicy policy, Key key, String packageName, String functionName, Value... functionArgs) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
UPDATE namespace.set SET (bin1=fn1(args), ...) WHERE condition + DELETE FROM namespace.set WHERE condition | ExecuteTask Client::execute(WritePolicy policy, Statement statement, String packageName, String functionName, Value... functionArgs) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL | Aerospike | |
---|---|---|
UPDATE namespace.set SET (bin=value, ...) WHERE condition + DELETE FROM namespace.set WHERE condition | Client::execute(WritePolicy policy, Statement statement) |
NewerOlder