我有一大堆ID(大约100000个)要存储在Redis中。
我正在寻找最理想的方式来检查给定的ID列表,ID属于我的集合中的什么?
如果我使用Redis集,则可以使用SISMEMBER来检查ID是否是我的集合的一部分,但在这种情况下,我想检查给定的ID列表是否是我集合的一部分。
示例:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Simplicity Creations</title>
<script>
function getName(ui){
$.ajax({
url: "http://localhost:8080/AssignmentSimplicity/employee/json",
type: "POST",
data: JSON.stringify($(ui).val()),
dataType: "json",
processData: false,
contentType: "application/json",
success: function (data) {
if (data) {
console.log(data);
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
}
});
}
</script>
</head>
<body>
<form action="employeesearch" method="post">
<div align="center">
<h1>Employee Search Details Page</h1>
</div>
<div style="margin-top: 10px;" align="center" >
<div>
<p>Search Employee Details</p>
<input type="text" width="10%" onkeyup="getName(this.value)">
</div>
</div>
</form>
这种东西已经存在了吗?
谢谢!