1
vote
2answers
88 views

How to validate presence and regex format in rails controller?

I am trying to validate an email address.. whether it is present or not.. and whether it meets a regex criteria (/xyz/). I really need to do this on the controller or view level in rails as I am going ...
0
votes
0answers
13 views

Do I need to replicate my nosql databases to run parallel_tests

My rails application uses a nosql database called kyoto, and I'm wondering if I need to hack together a way to replicate my kyoto databases in the same way the parallel_tests gem makes copies of my ...
0
votes
1answer
43 views

Designing a synchronizable embedded collection with MongoDB

I'd like to give an example for a design decision I'm struggling with: Let's say I have a "To Do List" application, with each list defined as a MongoDB document, and its items defined as an embedded ...
0
votes
1answer
44 views

SQL to Mongodb using Rails + Mongoid

I have the following document structure in Mongoid: class Post include Mongoid::Document field "title", type: String field "body", type: String field "category_name", type: String ...
0
votes
1answer
55 views

Rails + MongoDB: How to find out how what's the position of current record?

Here's a query for fetching a record from MongoDB: Article.where({'_id' => { "$gt" => params[:id]}}).sort({:_id => 1}).first Let's say in collection is 10 records and this is the 8th ...
0
votes
1answer
50 views

How to keep history data instead of reference to updated one in mongodb?

In many cases, I need to keep the data not changed after I created. But I also need to reference to the updated information to create a new record. For example, I have two collections; Order{ has ...
0
votes
1answer
320 views

Why use NoSQL instead of RDBMS? [duplicate]

Possible Duplicate: NoSql vs Relational database I have been on a couple projects where my teams chose to use a NoSQL DB (i.e. MongoDB) rather than a RDBMS like PostgreSQL or MySQL. By ...
0
votes
1answer
159 views

Modeling associations between ActiveRecord objects with Redis: avoiding multiple queries

I've been reading / playing around with the idea of using Redis to complement my ActiveRecord models, in particular as a way of modeling relationships. Also watched a few screencasts like this one: ...
0
votes
2answers
30 views

Menu with associated models and how to use 'Eager Loading' approach in a menu item issue

I want to make a rollOver menu for my project's main page. This will be shown in all pages of the site. Main menu items are SHOWS and PROGRAMS. When someone rolls over those buttons, all programmes ...
2
votes
3answers
83 views

How should I use a instance variable at different parts of a view?

This might be a noob question. But I couldn't figure it out by myself. In my application' I'm using Rails 3.2.8 with Mongoid and MongoDB. I have a instance variable like this: ProgramsController ...
1
vote
1answer
141 views

NoSQL for a Rails Engine on MySQL, PostgreSQL, or SQLite3

I'm writing a Rails engine to sell tickets to events on your own website. I'm implementing discounts for tickets. We're going to have a lot of potential discounts: 10% off all tickets 10% off a ...
0
votes
1answer
64 views

Strategy for heavy workloads that can't happen in real-time? (Webapp, User-matching, Caching) [closed]

I'm currently writing a webapp in Ruby on Rails that matches users based on questions they answered. Then they can search for a range of users, the system matches the searcher with every user that ...
1
vote
3answers
138 views

Rails3: Should I switch to NoSQL? A lot of calculations, a lot of data for user-matching

I'm at a stage of my project where I'm thinking about moving to NoSQL for performance reasons. I will definitely have tables with millions of rows, so NoSQL might be useful. But my problem is I'm ...
2
votes
1answer
832 views

Keeping elasticsearch and database in sync

I am trying to figure out a way to keep my mysql db and elasticsearch db in sync. I have setup a jdbc river using the jprante / elasticsearch-river-jdbc plugin for elasticsearch. When I execute the ...
0
votes
3answers
316 views

NoSql database for the open source project [closed]

i need to create a website that has a two types of entries. One type is movies with cast, short description, image and a genre (movies can be related and sorted only by genre). And second type of ...
0
votes
1answer
158 views

Organic Rails Data-Model with NoSQL Database

I'd like to make full use of the organic character of a NoSQL document and build a dynamic data model which can grow, be changed, and is different for most datasets. Below is the model SomeRequest.rb ...
2
votes
3answers
608 views

Schemaless design for Ember data in Ember.js

We are having schemaless database on MongoDB in Rails. I want to know how to use such a schemaless emberjs data design to integrate with such a design. I am not able to find any documentation on if ...
1
vote
2answers
103 views

what is the complexity of accessing a node in a graph generated by neo4j?

I consider working with dbpedia and use neo4j for this purpose. I have 2 things I don't understand: What is the complexity of accessing a node in the graph? If I have a huge DB such as dbpedia any ...
1
vote
1answer
154 views

Using Redis as the primary Rails store

How can I use Redis as the primary data store for a Rails app, and omit the SQL db? Is there an ORM / adapter that can translate Rails models into Redis objects in the same seamless manner as the SQL ...
0
votes
1answer
191 views

how to store in MongoDB in dynamic way without knowing about schema beforehand?

I want to send a very vague and dynamic JSON as a response from a client to server. for backend I'm using rails + mongoid. What I know from mongoid is I have to create a model class corresponding to ...
2
votes
4answers
452 views

Document-Oriented or Graph databases

It's a RoR project. We want to store user activities, like uploaded a photo, voted for somebody, followed somebody, etc. When listing the activities, we need to list your friends activities as well. ...
0
votes
1answer
96 views

Size of redis database (2N or N^2)

I have a redis database, and client for it, written in Ruby. What is the size of this database? def follow!(user) $redis.multi do $redis.sadd(self.redis_key(:following), user.id) ...
0
votes
1answer
98 views

Most proper way to use inherited classes with shared relations?

I have the TestVisual class that is inherited by the Game class : class TestVisual < Game include MongoMapper::Document end class Game include MongoMapper::Document belongs_to ...
1
vote
1answer
172 views

Changing rails on the fly

Im new to both ruby and rails, but have experience with java, javascript and a little python. I am thinking of creating a web application where it should be possible to create different things ...
0
votes
2answers
220 views

How do we use MongoDB in Ruby on Rails?

Does anybody know how to create a rails application that use noSql database? We do rails new app_name -d mysql for using mysql database, I need to know what command I should fire in case of noSql ...
0
votes
1answer
67 views

How to use field matching in mongoid query in rails

I am trying to build a search based on names. I am using newbie mongoid user. I want a query in which if i pass "A" it would return me all the names starting with "A".
1
vote
3answers
193 views

Mongoid and embedding tags

I have a few models that each have tags. Say for example, a User and a Post. Both should have embedded tags I think. The user's embedded tags are their "favorites" and a post's tags are tags that have ...
1
vote
3answers
505 views

Case-insensitive query criteria with MongoID

I have a query criteria which looks for an array of elements ( tags_array ) to match : User.all_in('watchlists.tags_array' => tags_array) I'd like the criteria to be CASE-INSENSITIVE, meaning I ...
0
votes
1answer
118 views

Rails migration - many belongs_to to same table, multiply FKs

I need some table like this one: uid:integer pid:integer predesposition:integer primary_key(uid,pid) foreign_key(uid, user(id)) foreign_key(pid, user(id)) So, two questions: 1. How can I declare ...
4
votes
1answer
2k views

Mongoid not in query

I have some trouble with mongoid: test "Test candidate" do User.create(:id => 1, :sex => User::Male, :country => 1, :city => 1) User.create(:id => 2, :sex => User::Female, ...
1
vote
0answers
372 views

Rails/Mongoid dynamic model

I'm working on a CMDB like application in RoR, having a root "node" model whose submodels like "server", "firewall", "router", ... will inherit, adding their own specific fields. Because each ...
0
votes
0answers
134 views

Which noSQL for key-value store for nested order pairs

I have a Rails app hosted in Heroku. I would like to store large datasets in the following form: {user_id, [array1], [array2], [array3]} Which noSQL (i.e., MongoDB, HBase etc) that has Rails ...
1
vote
1answer
235 views

Framework for social graph in Rails

I would like to have a database for social graph in my Rails app. Hopefully, the app will eventually have a few hundred of thousands of users, plus their Facebook and LinkedIn connections. Right now, ...
0
votes
1answer
138 views

MongoDB schema design for document that can be embedded or stand alone

I am relatively new to MongoDB and am still getting used to schema design. In a project that I am currently working on, users can tag files that they upload. There are three types of tags: ...
0
votes
1answer
116 views

Modeling an Amazon like metastore with Products from many Merchants in mongodb

I'm new to MongoDB so I just wanted to get some outside critique of my schema. I'm trying to build what is a akin to a metastore. I'm going to be selling products for a number of different merchants ...
2
votes
1answer
46 views

Mongodb2 : few questions

I often hear that mongodb can perform atomicity at one collection level. Do you know why and how this is linked to sharding? The only difference between replication and replicasets is that both ...
0
votes
1answer
1k views

How to implement pagination when using amazon Dynamo DB in rails

I want to use amazon Dynamo DB with rails.But I have not found a way to implement pagination. I will use AWS::Record::HashModel as ORM. This ORM supports limits like this: People.limit(10).each ...
1
vote
1answer
49 views

Building a MTurk-like app — how to use a db when column names change for each task?

I'm building a very simple MTurk-ish app in Rails. The idea is that people will upload csvs containing whatever columns they want (e.g., some id, name of a user, some piece of text, a link, whatever ...
1
vote
1answer
451 views

Full text search in embedded one to many, MongoID child docs

I have a MongoID User model class User include Mongoid::Document field :name embeds_many :watchlists end which embedded one to many class Watchlist include Mongoid::Document field ...
0
votes
2answers
268 views

Create REST api without Model on Rails 3.1? [closed]

how to create simple Rest (7 actions) without activerecord?
1
vote
1answer
220 views

Turn MongoDB _id into an ObjectID object using Ruby to Retrieve Unique Record

I'm trying to retrieve a document stored in MongoDB using its _id of the standard type ObjectID. I have the _id represented as a string. In this example it's "4ec064e406a6f1205a000001" So I do: ...
0
votes
1answer
714 views

Mongoid query by date ranges

How i can write where query by two date ranges? The only condition is that this data must be retrieved by one query. Thank you. UPD: or how to union 2 queries in one collection? not array
1
vote
1answer
344 views

When and how often to build indexes with MongoDB in production

I am about to deploy a web app using MongoDB as storage. The problem is, that locally I can build the indexes whenever I want (also done automatically) - but you shouldn't do that in production. Now ...
0
votes
2answers
206 views

which NoSQL database is suitable for this rails application

Building a rails application which will be used to edit documents, two persons may edit the same document concurrently but on their own branch, each can't see others' change until they are ready to ...
0
votes
2answers
303 views

Mongo mapper (Mongo DB) embedded document multiple field searching

"user_crawls": { "0": { "_id": ObjectId("4e4b5e1c151c0d0336000093"), "rand_id": "kPxMuXOY8Jfh6nXt", "network": "tw", "sourcenetwork": "874777", "sourceName": ...
2
votes
3answers
2k views

Switching from SQl to MongoDB in Rails 3

I am considering switching a quite big application (Rails 3.0.10) from our SQL database (SQLite and Postgres) to MongoDB. I plan to put everything in it, mainly utf-8 string, binary file and user ...
3
votes
2answers
978 views

CQRS in a Rails environment?

I'm trying to wrap my head around CQRS (Command Query Response Separation) per Martin Fowlers recent post at: http://martinfowler.com/bliki/CQRS.html Given a project: Main Database (Postgres): ...
0
votes
2answers
207 views

Why does this Mongoid document only save one child?

I've a mongoid embedded one to one model in a Rails app (User --> Watchlist) : class User include Mongoid::Document field :name, :type => String field :email, :type => String ...
1
vote
1answer
163 views

Learning Resources for mongodb and mongoid [closed]

More I'm going on with MongoID driver for MongoDB nosql models in my Rails apps, more I feel don't knowing so much about the full expressiveness, elasticity and powerness of its constructs. Mongoid ...
4
votes
2answers
3k views

Rails: mixing NOSQL & SQL Databases

I'm looking for the better way (aka architecture) to have different kind of DBs ( MySQL + MongoDB ) backending the same Rails app. I was speculating on a main Rails 3.1 app, mounting Rails 3.1 ...

1 2