I set up an information collector of an integer/numeric type in a class that essentially extends the article class type. I would like to read the value and increment it by one every time that article is displayed. Is this easy or even possible given the current framework?
This can be done, but the problem is that you cache the view. This means that it will only be executed when it's not cached and hence the counter will not be correct.
Ok, makes sense. How would I do such a thing (ignoring the glaring problem of caching)? I assume I FETCH the object somehow and then use a SET or something on it?