1,914 reputation
617
bio website alanpeabody.com
location Burlington, VT
age 29
visits member for 3 years, 4 months
seen 14 hours ago
stats profile views 80
Web Application Developer with solid knowledge in Ruby, Rails, JavaScript, jQuery, html, and css.

Mar
11
comment Learning Ruby on Rails “RSpec”
Also, make sure the above is in the development group as well as test group or the generator will not be available.
Mar
10
answered STI, one controller
Mar
9
answered Updating last_viewed field rails
Jan
1
awarded  Yearling
Dec
1
accepted Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
Oct
4
comment Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
Rebuilding the table is a horrible approach, and is why we are looking to change it. :) - EAV is the same approach Miky D recommended below. With two recommendations we are going to take a closer look at it. I think we are going to branch in a few weeks and try both a EAV and a MonogoDB approach. I am not going to mark either answer as accepted right now, but will update this question as we go along with our findings of what works best in our exact situation. Thank you for the suggestion and links.
Sep
29
accepted How many classes is too many? Rails STI
Sep
29
revised Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
added 212 characters in body
Sep
29
comment Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
150 currently, at our current rate we are adding ~ 100 per year, however we expect (hope) that will go up. It would not be unreasonable to expect the system to need to handle a couple thousand projects with in the next couple years.
Sep
27
comment Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
We have looked into something like this. The issue we foresee would is the size of the measurements table. At our current 15 minute data collection rate we would hit 5.25 million records per project per year. When we move to a one minute interval we are talking 78.8 million records per year per project. Then with 100 projects we would hit 7 billion records per year. Is that something MySql can handle?
Sep
27
revised Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
Added more info.
Sep
27
comment Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
Your last comment has been the most helpful. I am looking at nosql options as the columns are always different per client and it would allow us to get away from the 1 table per client setup. The ability to store the two things we would need (project/client id, timestamp) (indexed) as well as all the different measurements (once again varies completely by project).
Sep
27
answered If CSS Selectors are by #id, do you need to scope them?
Sep
24
comment Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
The alternative would be to put it all in one table with possibly 500+ columns most of which would be null for every project. This seems like a worse alternative to me. Unfortunately every site records a different number of measurements. There is no consistency nor is it possible to enforce any.
Sep
24
revised Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
added example
Sep
24
comment Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
I should be more specific. We use a mysql db for relational data and do have multi-tenancy. Because the data points are different for each client they each have their own data table that stores strictly measurement data with each measurement having it's own column.
Sep
24
asked Need Advice: Is this a good use case for a 'NoSQL' Database? If so, which one?
Sep
20
revised Generate JSON in Rails for JavaScript object parameter
fixed graph_path to fit common restful helpers
Sep
20
comment Generate JSON in Rails for JavaScript object parameter
Actually, I realize that the show was because I had to use a custom route. I change the model name for the example to graph, but it is actually analysis which results in some funky path I can never remember (so I overrode it).
Sep
17
comment Generate JSON in Rails for JavaScript object parameter
Ha, sorry. Probably should have noted that that was Rails 2.3.