Tagged Questions

0
votes
1answer
28 views

How do I stop the breadth-first search using Boost Graph Library when using a custom visitor?

Say I found the node that meets my criteria and I need to stop the search.
0
votes
1answer
82 views

MySQL Get rows between months

Hi all, I'm trying to SELECT the visitors of my site per month for the current year. For every different IP/user_agent combination there will be added a row per minute. To track …
0
votes
3answers
94 views

Website Stats/Traffic (backlinks, visitors)

Hi, How may I get the ranking statistics of a particular website using PHP, I'm talking about services like statbrain.com. I know I'll have to use other sources like Google, Yahoo …
4
votes
5answers
216 views

accurate page view count

What is a good approach to keeping accurate counts of how many times a page has been viewed I'm using Django. Specifically, I don't want refreshing the page to up the count.
10
votes
8answers
1k views

When should I use the Visitor Design Pattern?

I keep seeing references to the visitor pattern in blogs but I've got to admit, I just don't get it. I read the wikipedia article for the pattern and I understand its mechanics bu …
7
votes
2answers
362 views

Visitor Pattern + Open/Closed Principle

Is it possible to implement the Visitor Pattern respecting the Open/Closed Principle, but still be able to add new visitable classes? The Open/Closed Principle states that "softwa …
0
votes
7answers
694 views

A more generic visitor pattern

I'm sorry if my question is so long and technical but I think it's so important other people will be interested about it I was looking for a way to separate clearly some softwares …
0
votes
9answers
138 views

Call Visitors web stat program from PHP

I've been looking into different web statistics programs for my site, and one promising one is Visitors. Unfortunately, it's a C program and I don't know how to call it from the we …