redis.clients.jedis.search.querybuilder.IntersectNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis_preview Show documentation
Show all versions of jedis_preview Show documentation
Jedis is a blazingly small and sane Redis java client.
The newest version!
package redis.clients.jedis.search.querybuilder;
/**
* The intersection node evaluates to true if any of its children are true.
*
* In RS: {@code @f1:v1 @f2:v2}
*/
public class IntersectNode extends QueryNode {
@Override
protected String getJoinString() {
return " ";
}
}