Couchio, the company founded by Damien Katz, creator of CouchDB, has announced the release of CouchDB SDK for Android, a mobile version of the document database that can be used offline. By Abel Avram …
Tag Archives: couchdb
Enlaces rápidos (04-06-2010)
Más enlaces rápidos sobre NOSQL, para variar:
- NoSQL is About…
- NoSQL Graph Database feature comparison
- Cassandra NOSQL EU 2010 – Twitter: “Hace 15 meses se tardó 2 semanas en hacer un ALTER TABLE de la tabla de statuses [tweets]”
- NoSQL in the Enterprise
- NOSQLEU – Graph Databases and Neo4j
- Dealing data deluge
- Yahoo! Cloud Serving Benchmark (YCSB)
- Running Hadoop MapReduce With Cassandra NoSQL
- NoSQL at Twitter
- MySQL vs MongoDB
- Mashups with the Facebook Graph API and Neo4j
- NoSQL Graph Database Comparison
- Cassandra By Example
- Scalability of the Hadoop Distributed File System
- A NoSQL Use Case: URL Shorteners
- Cassandra Webconsole
- Learning NoSQL from Twitter’s Experience
- NoSQL Databases
- InfiniteGraph: the distributed graph database
- HTML5 Custom Data Attributes (data-*)
- Simple Document Versioning with CouchDB
Enlaces rápidos (15-03-2010)
Más enlaces rápidos, sobre todo basados en NoSQL (por favor, que no lo conviertan en un término que usen los guays y los gurús…)
- CodeIgniter library for interfacing with MongoDB
- 5 Things Every PHP Developer Should Know About MongoDB
- The dark side of NoSQL
- neo4j-php-wrapper: Integración entre PHP y Neo4j
- WTF is a SuperColumn? An Intro to the Cassandra Data Model
- MySQL migration and risk management
- Getting started with CouchDB: a beginner’s guide
- How FarmVille Scales to Harvest 75 Million Players a Month
- Tutorial y demo de redis
- Let’s not let “NoSQL” go the way of “Web 2.0”
- Saying Yes to NoSQL; Going Steady with Cassandra
- MongoDB, CouchDB, MySQL Compare Grid
- MongoDB shell testing
- Your Ultimate Guide to theNon – Relational Universe!
- Choosing a non-relational database; why we migrated from MySQL to MongoDB
- CodeIgniter 2.0: Everything you need to know
- Visual Guide to NoSQL Systems (vía @jlantunez)
Me hizo gracia esta frase: “NoSQL is for very smart people who need a very sharp knife.” espero un día cumplir ambas condiciones 🙂
PHPillow: librería PHP para CouchDB
PHPillow es una librería PHP que nos permite interactuar con CouchDB (base de datos documental de Apache basada en JSON).
Ahora que el NoSQL es una alternativa a las bases de datos relacionales, esta librería nos ayudará bastante a la hora de realizar nuestra aplicación, ya que el código es bastante sencillo.
class myBlogDocument extends phpillowDocument {
protected static $type = 'blog_entry';
protected $requiredProperties = array( 'title', 'text', );
public function __construct() {
$this->properties = array(
'title' => new phpillowStringValidator(),
'text' => new phpillowTextValidator(),
'comments' => new phpillowDocumentArrayValidator( 'myBlogComments' )
);
parent::__construct();
}
protected function generateId() {
return $this->stringToId( $this->storage->title );
}
protected function getType() {
return self::$type;
}
}