私はspring-data-couchbaseでcouchbase3を使用しており、複数の列を持つSpringデータリポジトリを使用してデータをクエリしたいと考えています.
public interface UserAccountRepository extends CrudRepository<UserAccount, Long> {
public UserAccount findByEmail(Query eMail);
public UserAccount findByEmailAndStatus(Query query); // fn with multiple column, but not getting the result
}
Map関数とReduce関数を同じように書くにはどうすればよいですか?
関数findByEmail(Query eMail) の場合。動作するように、Map fn() でビューを追加しました
function (doc, meta) {
emit(doc.email,doc);
}
このビューは電子メールをキーとして持ち、値はドキュメントです。しかし、メールとステータスを使用してクエリを実行する必要がある場合は? ビューはどのように見えるべきですか?
このリンクを見たことがありますが、あまり明確ではありません。 https://stackoverflow.com/questions/28938755