Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 27996 invoked from network); 9 Apr 2006 17:49:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Apr 2006 17:49:16 -0000 Received: (qmail 55449 invoked by uid 500); 9 Apr 2006 17:49:12 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 55049 invoked by uid 500); 9 Apr 2006 17:49:10 -0000 Mailing-List: contact modperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list modperl@perl.apache.org Received: (qmail 55038 invoked by uid 99); 9 Apr 2006 17:49:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Apr 2006 10:49:10 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [66.33.198.201] (HELO jareth.dreamhost.com) (66.33.198.201) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Apr 2006 10:49:10 -0700 Received: from [192.168.1.100] (user-10876ld.cable.mindspring.com [64.131.154.173]) by jareth.dreamhost.com (Postfix) with ESMTP id C5F86191051 for ; Sun, 9 Apr 2006 10:48:48 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v749.3) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: mod_perl Mailing List From: Jonathan Vanasco Subject: preventing/throttling successive form posts? Date: Sun, 9 Apr 2006 13:48:44 -0400 X-Mailer: Apple Mail (2.749.3) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Does anyone know of a good idiomatic way to safeguard against people hitting reload and processing the same info twice? I'm thinking someone here figured out a series of internal/external redirects to keep that from happening. Right now, I just do a timeout variable in the session -> check if someone is throttled, if not process and set a timeout for 30seconds if successful. I'm wondering if there's a more mod_perl way to make that happen.