The read-unread tag has no wiki summary.
9
votes
5answers
398 views
Handling unread posts in PHP / MySQL
For a personal project, I need to build a forum using PHP and MySQL. It is not possible for me to use an already-built forum package (such as phpBB).
I'm currently working through the logic needed ...
1
vote
1answer
269 views
Brisk cassandra TimeUUIDType
I used brisk. The cassandra column family automatically maps to Hive tables.
However, if data type is timeuuid in column family, it is unreadable in Hive tables.
For example, I used following command ...
1
vote
1answer
56 views
Handling Read/Unread Posts for users like mail in mysql
I need to handle read/ unread status of a post per user.
Write now i am using a denormalized column to store comma separated user_ids. Since it is a text column the performance of the select query is ...
0
votes
1answer
29 views
List View Read and Unread messages
I have a list view in which i show the list of messages. I am using SimpleAdapter to show the listview. I have a flag(true/false) set in the hash map(that shows whether message is read or not).Its ...
0
votes
2answers
184 views
Objective C: How to check for unread messages (number to be displayed as badge)
I have a tableView storing a list of notifications (retrieved from server). How can I check if the particular notification has been viewed by the user?
I was thinking of
1) storing the notification ...
0
votes
0answers
65 views
how to use IMAP to get mail read unread status change log and analyze user using time
our client want to know the static report of their user from get mail to read mail(unread to read period), they use exchange server 2010 and disable POP3 connection, do anybody know how to get the ...
0
votes
2answers
116 views
Returning unread records using Linq To SQL
I'm not sure how to ask this question, so I'll start with an example of what I'm doing.
Here is my table structure...
Documents (Primary key = ID)
ID, Title, LatestApprovedRevID
Revisions (Primary ...
0
votes
1answer
642 views
Google Reader Unread Count
I wrote this function to get the unread count of google reader items.
function GetUnread($sid)
{
$url = "http://www.google.com/reader/api/0/unread-count?all=true&output=xml";
$msg = ...
0
votes
3answers
208 views
What's the most efficient way to remember read/unread status across multiple items?
For example, let's take the format of a forum, where we have multiple users and multiple threads. Say this forum wants to track which users have read which threads and, say, use that information to ...