-
Cassandra largely differs from RDMS and even other NoSQL systems in that tables are usually just "views" or "indexes" meant to present data in a specific way to improve performance on read queries, be…
-
I was looking at https://github.com/qandidate-labs/broadway/blob/ecaf8a46269e4046c361cd3388f5eeb0c5149929/src/Broadway/ReadModel/RepositoryInterface.php and wonder how read model have a save method.
…
-
This fixes some MySQL-specific and erroneous quoting, so it now runs on other RDMS systems such as Microsoft SQL Server. More specifically:
Bound parameters are not quoted, as the binding handles th…
-
When using versioning, there is currently no way to force a document to be indexed when the same or newer version already exists. This would be useful when, for instance, ElasticSearch contains data r…
-
Some RDMS (like PostgreSQL) allows whitespaces in table names, which have to be quoted.
A regex at db/QueryBuilder.php breaks such table names, e.g. table ' "one two" ' becomes ' "one" "two" ' instea…
-
At the hackathon I went to this past weekend, I met Randall (https://github.com/ranman), who has been working for MongoDB since 2009 (? I think) and has worked on everything from the core Mongo kernel…
-
For the record, here's a recipe to use Peewee with Google Cloud SQL on App Engine Python SDK. Cloud SQL uses MySql, so the only difference is the connection:
```
from google.appengine.api import rdbm…
-
A desperately needed addition to AsyncPoco would be some new methods that return prepared parameterized commands for inserts, updates and selects along with a new method for mapping a poco onto the pa…
-
In short, if you do a find on multiple records while doing a :joins query, AR throws a RecordNotFound exception. The same query using :includes works just fine.
Also, if you call #uniq in the query, …
synth updated
10 years ago
-
Hello,
First off I would like to say that you have an excellent library here in YapDatabase. I am using it in another project of mine and I love the simplicity and freedom it provides me over a tradi…