Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6685961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:07:03+00:00 2026-05-26T05:07:03+00:00

I would like to track certain user activity and limit this activity using a

  • 0

I would like to track certain user activity and limit this activity using a time constraint. An example of this could be the votes per day limit enforced by SO. Which of the following methods provides a better solution in terms of scalability and ease of use?

  • Store activity info in the database
  • Store activity info in the application scope
  • Use an entirely different method to track this information

Method 1:

  • Advantages: data integrity, which is not important in my use case.
  • Disadvantages: requires database interaction, stores redundant data, requires a scheduled event to reset the values being tracked

Method 2

  • Advantages: does not require database interaction, appears to be easier
  • Disadvantages: I’m unsure of the implications on application memory given a large user-base to track, or how easy it is to find and manipulate struct data with hundreds of keys

I’m using ColdFusion with MySQL, if this matters.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T05:07:04+00:00Added an answer on May 26, 2026 at 5:07 am

    Assuming you only care about this data on a per-person basis, and won’t be getting aggregates of this, I’d suggest you go with a key/val store that supports TTL. Redis sounds like it fits your requirements pretty well.

    • Though it runs in memory, it does snapshot to disk periodically (which mean it’s fast, and if something goes down, you’ll get most everything back).

    • Easy interaction, as with your “method 2”, but without having to worry about managing a large in-memory structure.

    Example Setup

    Going with the SO points-per-day scenario, we’ll have a time-frame of one day, and our value will be a simple value that increments on some user activity.

    Our key would be a combination of the user’s id and the current timeframe (day, in this case). After we have set the key, we set a ttl, which means after today is up, the key will eventually expire and clean itself up.

    redis> incr user123-2011-10-09
    (integer) 1  # no value found for key, defaulting to 1
                 # if this key already had a value it would be incremented.
    
    redis> expire user123-2011-10-09 86400
    (integer) 1  # expiration of 1 day was successful
    
    redis> get user123-2011-10-09
    "1"          # current value of user key
    

    More info on these commands (incr, get, expire, and ttl would be of most interest to you) can be found on the redis commands reference (complete with an interactive shell to try these things out).

    Edit

    This method could obviously be applied with any number of k/v stores, I’ve used Redis here as a concrete example since I believe it meets the requirements closely.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a xml web service which I would like to track using Google
I would like to use google analytics to track pageviews and sessions by certain
I would like to track how many surveys have been done by different departments
I am making a small game in flash, I would like to track scores
I currently have a controller were I would like to keep track of logging
I have various models of which I would like to keep track and collect
I would like to confirm whether I am on the right track when identifying
I'm experiencing an issue with ActiveMQ and would like to trace/view all ActiveMQ activity.
Would like to get a list of advantages and disadvantages of using Stored Procedures.
I am building an iphone app and would like to keep track of how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.