Page 338 of 211,266, showing 20 records out of 4,225,320 total, starting on record 6,741, ending on 6,760
# | Username | Text | |
---|---|---|---|
# | Aug 9th 2008, 05:16 | Howard`` | I'm not sure how the whole load balancing thing works out |
# | Aug 9th 2008, 05:17 | Howard`` | say I wanted to store millions of rows, how could I do that efficiently |
# | Aug 9th 2008, 05:17 | AD7six | Howard``: look up sharding |
# | Aug 9th 2008, 05:18 | Howard`` | Thanks AD7six, I'm building up the idea with cakephp .. it's going to be a heavy e-mail system |
# | Aug 9th 2008, 05:18 | Howard`` | I'm sort of wondering whether I should store the contents etc in the database or on the filesystem |
# | Aug 9th 2008, 05:19 | Howard`` | is MySQL a good system to shard with or would you reccomend a different database? |
# | Aug 9th 2008, 05:19 | AD7six | for emails - what benefit do you expect putting them in athe db. |
# | Aug 9th 2008, 05:19 | Howard`` | well I want to be able to hold the associative records for users |
# | Aug 9th 2008, 05:20 | AD7six | what associative records |
# | Aug 9th 2008, 05:20 | Howard`` | Basically quick references like who the e-mail belongs to, subject header, the to and from fields |
# | Aug 9th 2008, 05:20 | Howard`` | I need to be able to reference this for the system |
# | Aug 9th 2008, 05:20 | AD7six | have a look at that as a starting point: http://trac.assembla.com/cake-base/browser/branches/sample_app/app/models/mi_email.php |
# | Aug 9th 2008, 05:21 | kaotisch | Hey all, I have an issue with the Auth comp. When I add it as component in app_controller, and call any action (for example sadf.com/notes/view/ ), i should get redirected to sadf.com/users/login/ but instead i get redirected to sadf.com/notes/view/users/login and it ends up in an infinite redirect like sadf.com/notes/view/users/login/users/login/users/login. Anyone has an idea why this could happen? |
# | Aug 9th 2008, 05:21 | achew22 | AD7six: does deleteAll work? |
# | Aug 9th 2008, 05:21 | AD7six | achew22: yes |
# | Aug 9th 2008, 05:21 | achew22 | hrm... |
# | Aug 9th 2008, 05:22 | Howard`` | thanks AD7six, checking that and sharding out now |
# | Aug 9th 2008, 05:22 | AD7six | Howard``: you'd be better off thinking about sharding etc. if/when you have to of course. |
# | Aug 9th 2008, 05:24 | AD7six | Howard``: well that's effectively dbo layer logic - i.e. doesn't influence any of your app code at all if it's done right. |
# | Aug 9th 2008, 05:24 | Howard`` | I've seen sharding in use actually |