-
Updated
Apr 2, 2022 - Go
Apache Cassandra

Apache Cassandra is a free, open source, distributed, wide column store, NoSQL database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure.
Here are 1,627 public repositories matching this topic...
-
Updated
Oct 28, 2021 - Python
In Chapter 5. Schema and Data Modeling first there is paragraph:
The default cardinality setting is SINGLE. Note, that property keys used on edges and properties have cardinality SINGLE. Attaching multiple values for a single key on an edge or property is not supported.
and then example:
mgmt = graph.openManagement()
follow = mgmt.makeEdgeLabel('follow').multiplicity(MULTI).make()
-
Updated
Apr 4, 2022 - JavaScript
-
Updated
Apr 24, 2020 - Jsonnet
Hey Crew,
Nice job on gocql, I'm a fan...
For my production services, I could use notification events (via callback or channel) when the gocql client disconnects and reconnects to/from Cassandra. This is useful for higher-level application logic (ie: invoke alarms, stop reading from a durable message queue, etc).
After looking through the code, it looks like the connection information is not p
-
Updated
Apr 5, 2022 - PHP
The .forall
pattern is a great way to create an optional filter for a field that could be defined or not:
case class Person(name: String, age: Int)
val nameOpt: Option[String] = Some("Joe")
run { query[Person].filter(p => lift(nameOpt).forall(_ == p.name)) }
// SELECT p.name, p.age FROM Person p WHERE ? IS NULL OR ? = p.name
// (i.e. when nameOpt := None then the `WHERE ? IS NULL`
-
Updated
Mar 28, 2022 - Java
-
Updated
Mar 26, 2022 - JavaScript
-
Updated
Mar 25, 2022 - Python
-
Updated
Aug 16, 2021 - Scala
-
Updated
Mar 25, 2022 - Shell
-
Updated
Mar 23, 2022 - Scala
-
Updated
Mar 26, 2021 - Java
-
Updated
Mar 30, 2022 - Go
-
Updated
May 7, 2021 - JavaScript
-
Updated
Mar 5, 2020 - Python
-
Updated
Aug 13, 2019 - Scala
-
Updated
Feb 14, 2022 - C#
-
Updated
May 27, 2020 - Java
-
Updated
Dec 10, 2021 - C#
Created by Apache Software Foundation
Released July 2008
- Repository
- apache/cassandra
- Website
- cassandra.apache.org
- Wikipedia
- Wikipedia
The
observable
class keeps the list ofstd::function<void(Args...)>
subscribers onboard. When set (called) the value notifies all observers about the change. Beingvoid
the callback that needs to start an asynchronous operation can do nothing but send it into the background by ignoring the top-most future. It would be nice ifobservable::operator()
returned back a future. This would requir