Hello everyone,

I was thinking how Drupal cache and form's play along. Consider we have a page with a login form on it. If I turn on the Drupal cache or user Boost module or Varnish cache, will it interfere with the forms.

Why I am asking? Well, forms in drupal have hidden form_id, form_token, etc. and if they do not match with the values in the database your form will not get executed, right. So, if I turn on the Varnish cache or Boost modules they will be givving the same form_id and form_token to all anonymous users. Do those values need to change for every anonumous visitor or after all sucessfull logins?

Thanks.