RE: [PHP] Cache engines in a multi-tenant environment (a bit long)

2009-03-03 Thread Damon Miller
Thanks very much for your response. I was surprised at APC's behavior (thinking that files in different directories would be treated as different entities) but I couldn't explain the behavior I was seeing otherwise. However, that may be a function of APC specifically and not all PHP cache

Re: [PHP] Cache engines in a multi-tenant environment (a bit long)

2009-03-03 Thread Robert Cummings
On Tue, 2009-03-03 at 11:41 -0800, Damon Miller wrote: > > My question then becomes the following: Is there a cache engine > available which can store multiple (different) copies of a source file > and serve them only to the appropriate request? Perhaps a better way > to > describe this would be

[PHP] Cache engines in a multi-tenant environment (a bit long)

2009-03-03 Thread Damon Miller
Hi all. I need some guidance on implementing a PHP cache engine in a "multi-tenant" environment. I've done some research on the open-source cache engines available--specifically, APC, XCache, and eAccelerator--but I haven't found anything that speaks to my use case. Hopef

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-19 Thread Richard Lynch
On Thu, January 19, 2006 12:56 am, Albert wrote: > Jochem Maas wrote: >> take note that APC does 2 things: >> >> 1. op code caching >> 2. manage some shared memory (a central place where you can stick >> stuff >> that needs to be read again and again and again; but doesn't need >> updating >> very

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-19 Thread Albert
Jochem Maas wrote: > take note that APC does 2 things: > > 1. op code caching > 2. manage some shared memory (a central place where you can stick stuff > that needs to be read again and again and again; but doesn't need updating > very often) "pear install apc" failed without reason. I ended up do

Re: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Ruben Rubio Rey
Did u tried memcached? http://www.danga.com/memcached/ Albert wrote: I wrote: I am running SuSE 9.2 (Kernel 2.6.8-24-default) with Apache 2.0.50 and PHP 4.3.8 (as an Apache module) on a Celeron 900 with 304MB RAM. This machine is used for testing. We have made some changes to our PHP appl

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Richard Lynch
On Wed, January 18, 2006 9:37 am, Albert wrote: > For this I wanted to use mmCache (actually I want to use Zend > Performance > Suite but first I need to prove that it is worth $ 1000 per CPU and > from the > stats on the mmCache site mmCache is faster...) but it seems that the > mmCache project ha

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Stefan Moldoveanu
http://eaccelerator.net/HomeUk Actually, is the former mmCache with a new team of developers and some impovements. The last known version of mmCache I've played with one week ago core dumped the httpd on ./apachectl stop. The last stable version of eAccelerator (0.9.3, I think) works like a cha

Re: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Jochem Maas
on your *nix cmdline type this: pear install apc (if you don't have pear installed then you should fix that first ;-) now read here about how to use it: http://php.net/apc I love it even though it crashes when caching the opcodes of certain class files (php5 files that make use

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Albert
I wrote: > I am running SuSE 9.2 (Kernel 2.6.8-24-default) with Apache 2.0.50 and PHP > 4.3.8 (as an Apache module) on a Celeron 900 with 304MB RAM. This machine > is used for testing. We have made some changes to our PHP application and > now the machine is having trouble serving the pages. Apac

Re: [PHP] cache xml objects in php5

2005-09-27 Thread Jasper Bryant-Greene
Rasmus Lerdorf wrote: Jasper Bryant-Greene wrote: Have you looked at memcache? http://www.php.net/manual/en/ref.memcache.php He did say that serialization wasn't an option and you can't use memcached without serializing. You may not realize you are serializing, but the memcache extension s

Re: [PHP] cache xml objects in php5

2005-09-27 Thread Rasmus Lerdorf
Kevin Wang wrote: > My php5 web application needs to parse/marshall a bunch of large xml files > into > php5 objects at the beginning of handling each request. These xml files are > static across all the requests and it is really time consuming to > parse/marshall them into php5 objects. What so

Re: [PHP] cache xml objects in php5

2005-09-26 Thread Torgny Bjers
Kevin Wang wrote: >Hi All, > >My php5 web application needs to parse/marshall a bunch of large xml files into >php5 objects at the beginning of handling each request. These xml files are >static across all the requests and it is really time consuming to >parse/marshall them into php5 objects. > >

Re: [PHP] cache xml objects in php5

2005-09-26 Thread Jasper Bryant-Greene
Kevin Wang wrote: My php5 web application needs to parse/marshall a bunch of large xml files into php5 objects at the beginning of handling each request. These xml files are static across all the requests and it is really time consuming to parse/marshall them into php5 objects. I am wondering i

[PHP] cache xml objects in php5

2005-09-26 Thread Kevin Wang
Hi All, My php5 web application needs to parse/marshall a bunch of large xml files into php5 objects at the beginning of handling each request. These xml files are static across all the requests and it is really time consuming to parse/marshall them into php5 objects. I am wondering if there is

Re: [PHP] Cache/Form Problem

2005-09-25 Thread Mikey
Peter Justus wrote: Hi List Not too sure if this is the right list to send to so forgive me for my ignorance if it is incorrect. My Question I have a form which users need to fill out, (quite a lengthy one) it consists of 5 or so pages with various questions on each!, the last page submits th

[PHP] Cache/Form Problem

2005-09-25 Thread Peter Justus
Hi List Not too sure if this is the right list to send to so forgive me for my ignorance if it is incorrect. My Question I have a form which users need to fill out, (quite a lengthy one) it consists of 5 or so pages with various questions on each!, the last page submits the information and write

Re: [PHP] Cache Problems

2005-05-20 Thread Richard Lynch
On Fri, May 20, 2005 12:11 pm, Rahul S. Johari said: > My whole Auto-Image verification application and has come to get stuck at > the Cache in IE. It¹s working fine in Safari on Mac, but IE is picking up > the image from the Cache no matter what. I¹ve tried the following: Are you clearing out the

[PHP] Cache Problems

2005-05-20 Thread Rahul S. Johari
Ave, My whole Auto-Image verification application and has come to get stuck at the Cache in IE. It¹s working fine in Safari on Mac, but IE is picking up the image from the Cache no matter what. I¹ve tried the following: header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " .

Re: [PHP] Cache

2005-05-17 Thread Rory Browne
> Probably, but not serializing at all, and stuffing the data directly into > shared memory would perhaps be faster, at least as I vaguely understood > the results of a thread on serialization on this very forum from a month > or two ago. (Check archives for "serialize" "shared memory" and "Rasmus

Re: [PHP] Cache

2005-05-16 Thread Evert | Rooftop
Rory Browne wrote: Interesting idea. Using three identifiers, as a key. md5() returns a 32 hex-digit value. That means that there are can only be a maximum of 3.4 * 10^38 possible outcomes for the md5(). This means that there there is a 1 in 340 chance of a coll

Re: [PHP] Cache

2005-05-16 Thread Rory Browne
Interesting idea. Using three identifiers, as a key. md5() returns a 32 hex-digit value. That means that there are can only be a maximum of 3.4 * 10^38 possible outcomes for the md5(). This means that there there is a 1 in 340 chance of a collision between filena

Re: [PHP] Cache

2005-05-16 Thread Richard Lynch
On Mon, May 16, 2005 12:09 pm, Evert | Rooftop said: > $id1 $id2 and $id3 are when they are combined unique > > * Is there a chance of collision when MD5 is used on the id's and the > ids are long strings Yes. I think it's like 1 in 2 billion odds. If you can concatenate $id1$id2$id3 and get a g

[PHP] Cache

2005-05-16 Thread Evert | Rooftop
Hi, I'm developing a cache system. Which works in pseude code, like this: class Cache { function Fetchdata($id1,$id2,$id3) { $id = md5($id1 . $id2 . $id3); if ($this->DataIsExpired($id)) return false; else return unserialize(file_get_contents($id)); } function storeData($data,$id1,$id2,$id

[PHP] Cache control

2005-04-26 Thread William Stokes
Hello, I have an web application that checks users rights to specific parts of the apllication at the beginning of each page. However I noticed, with the help of Jason Barnett, that opera caches pages locally and the users rights check fails. The application works fine with Firefox and IE. So I

Re: [PHP] cache class

2005-03-22 Thread Jason Barnett
To add to the discussion: are you using anything like the Zend performance cache? MMTurck? Smarty? I ask because there are various programs out there (some PHP-based, some not) that will cache PHP code. -- Teach a man to fish... NEW? | http://www.catb.org/~esr/faqs/smart-questions.html STFA |

RE: [PHP] cache class

2005-03-22 Thread Mike Johnson
From: Mister Jack [mailto:[EMAIL PROTECTED] > Hi, > > I'm having a bit of a problem. > I include a class in my script, the first time run fine, and then if I > change anything in my class, changes are not reflected on the browser, > it's like it's still the old class which is used. I've cleared

[PHP] cache class

2005-03-22 Thread Mister Jack
Hi, I'm having a bit of a problem. I include a class in my script, the first time run fine, and then if I change anything in my class, changes are not reflected on the browser, it's like it's still the old class which is used. I've cleared the browser cache, force a pragma no-cache, but no, nothin

Re: [PHP] cache engine

2005-03-06 Thread Chris Smith
Evert - Rooftop Solutions wrote: Mark Charette wrote: Evert - Rooftop Solutions wrote: I heard that shared memory is actually slower than writing and reading a file and it is not available on windows systems. Hmmm ... that's an interesting thing you heard concerning shared memory. Care to share

Re: [PHP] cache engine

2005-03-05 Thread Mark Charette
Evert - Rooftop Solutions wrote: Check it out, is in old article, but it says "|shm| -- The |shm| container stores the cached data in the shared memory. Benchmarks indicate that the current implementation of this container is much slower than the |file| container." Which, of course, is miles awa

Re: [PHP] cache engine

2005-03-05 Thread Evert - Rooftop Solutions
Mark Charette wrote: Evert - Rooftop Solutions wrote: I heard that shared memory is actually slower than writing and reading a file and it is not available on windows systems. Hmmm ... that's an interesting thing you heard concerning shared memory. Care to share _who_ told you that? I'd like to

Re: [PHP] cache engine

2005-03-05 Thread James Williams
Mark Charette wrote: Evert - Rooftop Solutions wrote: I heard that shared memory is actually slower than writing and reading a file and it is not available on windows systems. Hmmm ... that's an interesting thing you heard concerning shared memory. Care to share _who_ told you that? I'd like to

Re: [PHP] cache engine

2005-03-05 Thread Mark Charette
Evert - Rooftop Solutions wrote: I heard that shared memory is actually slower than writing and reading a file and it is not available on windows systems. Hmmm ... that's an interesting thing you heard concerning shared memory. Care to share _who_ told you that? I'd like to make sure I don't hir

Re: [PHP] cache engine

2005-03-05 Thread Evert - Rooftop Solutions
Chris Smith wrote: I have seen some people using stornig cached items in shared memory. This is explained in some detail here: http://www.danga.com/memcached/ I heard that shared memory is actually slower than writing and reading a file and it is not available on windows systems. There are PHP

Re: [PHP] cache engine

2005-03-05 Thread Chris Smith
Evert - Rooftop Solutions wrote: I have written an extensive web application frameworks, and I keep seeing my execution time and memory-usage growing. Right now it is not a problem, but before it get's out of hands I will need to create a good cache engine. My cache engine requires that I can ca

[PHP] cache engine

2005-03-05 Thread Evert - Rooftop Solutions
Hi people, I have written an extensive web application frameworks, and I keep seeing my execution time and memory-usage growing. Right now it is not a problem, but before it get's out of hands I will need to create a good cache engine. My cache engine requires that I can cache method results, ba

[PHP] Re: PHP Cache

2005-01-25 Thread Matthew Weier O'Phinney
* Merlin <[EMAIL PROTECTED]>: > I am trying to find a open source PHP Cache extension. After trying > out ionCube PHP Accelerator (http://www.php-accelerator.co.uk) I had > to remove it from the system since it brought down the server every > few weeks due to some memory leak.

Re: [PHP] PHP Cache

2005-01-25 Thread Tom
vers so it doesn't care what language you are using to provide the content. Tom Merlin wrote: Hi there, I am trying to find a open source PHP Cache extension. After trying out ionCube PHP Accelerator (http://www.php-accelerator.co.uk) I had to remove it from the system since it brought down t

[PHP] PHP Cache

2005-01-25 Thread Merlin
Hi there, I am trying to find a open source PHP Cache extension. After trying out ionCube PHP Accelerator (http://www.php-accelerator.co.uk) I had to remove it from the system since it brought down the server every few weeks due to some memory leak. There is also APC, but the latest build is

Re: [PHP] Cache

2004-08-17 Thread raditha dissanayake
Octavian Rasnita wrote: From: "pan" <[EMAIL PROTECTED]> What provides the new data? Can you run a html update from whatever is supplying the new data? Hmm, I don't think I can. The data is stored in MySQL by a separate program, but that data can be used in more pages. I think the only good

Re: [PHP] Cache

2004-08-17 Thread Octavian Rasnita
From: "pan" <[EMAIL PROTECTED]> > What provides the new data? > Can you run a html update from whatever is supplying the new data? > Hmm, I don't think I can. The data is stored in MySQL by a separate program, but that data can be used in more pages. I think the only good solution would be to r

Re: [PHP] Cache

2004-08-16 Thread pan
> >The problem is that I don't know how to automaticly decide when it is the > >right moment to update the cache and this is very important. > >I get some data from a database and the PHP program doesn't know when the > >database gets updated by another program, so it cannot create the cache for >

Re: [PHP] cache was:Re: Compile

2004-08-16 Thread raditha dissanayake
Gentlemen, After some study I am very confident that the best solution is to use squid accelarator rather with out with out any of these caching programs. The ideas is this you can run squid 'in front of' your webserver and it will cache the generated html output from the php script and deliver

Re: [PHP] Cache

2004-08-16 Thread raditha dissanayake
Octavian Rasnita wrote: Hi all, I want to create an html cache of a page, like when that page is saved to the disk and let the visitors download that static page and not a dynamic one. Of course, a dynamic PHP program will load that static page and display it, but without need to connect to databas

[PHP] Cache

2004-08-16 Thread Octavian Rasnita
Hi all, I want to create an html cache of a page, like when that page is saved to the disk and let the visitors download that static page and not a dynamic one. Of course, a dynamic PHP program will load that static page and display it, but without need to connect to databases, to make calculation

Re: [PHP] PHP, Cache Control and Mac IE

2004-02-18 Thread Gareth Williams
Hello Roger, If you find a solution, I would also be interested to to see it. I have tried almost everything to get Mac IE to not use the cache. It just doesn't seem to accept anything. On 18 Feb 2004, at 18:58, Roger Spears wrote: Hello List, I am using the following in a PHP script: head

[PHP] PHP, Cache Control and Mac IE

2004-02-18 Thread Roger Spears
Hello List, I am using the following in a PHP script: header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); header("P

RE: [PHP] cache control with javascript

2003-10-21 Thread Joshua Minnie
ECTED] Sent: Tuesday, October 21, 2003 11:56 AM To: Joshua Minnie Cc: [EMAIL PROTECTED] Subject: Re: [PHP] cache control with javascript On 2003.10.21, at 22:28 Asia/Tokyo, Joshua Minnie wrote: > The "it" that you were asking about was the server. The javascript > file is >

Re: [PHP] cache control with javascript

2003-10-21 Thread - Edwin -
On 2003.10.21, at 22:28 Asia/Tokyo, Joshua Minnie wrote: The "it" that you were asking about was the server. The javascript file is actually a PHP file that produces the JavaScript that I need. I only have one access to a database and a while loop to generate the code. Here is the code piece

Re: [PHP] cache control with javascript

2003-10-21 Thread Joshua Minnie
The "it" that you were asking about was the server. The javascript file is actually a PHP file that produces the JavaScript that I need. I only have one access to a database and a while loop to generate the code. Here is the code pieces: [code] // already connected to the db $sql = "SELECT * FR

Re: [PHP] cache control with javascript

2003-10-20 Thread - Edwin -
On Mon, 20 Oct 2003 14:44:50 -0400 "Joshua Minnie" <[EMAIL PROTECTED]> wrote: > Does anybody know how I can make force a javascript file (written in > PHP) to be cached if the user agent allows it? > > Here is the situation: > I am creating a dropdown menu system that contains a customer list, >

[PHP] cache control with javascript

2003-10-20 Thread Joshua Minnie
Does anybody know how I can make force a javascript file (written in PHP) to be cached if the user agent allows it? Here is the situation: I am creating a dropdown menu system that contains a customer list, loaded from a database. This list is written to the javascript file for the menu. The menu

Re: [PHP] Cache

2003-08-19 Thread Chris Shiflett
--- Klaus_Kaiser_Apolinário <[EMAIL PROTECTED]> wrote: > But this Cache control are not working What do you mean by not working? Something is cached that shouldn't be? Also, you are sending multiple Cache-Control headers, sending expired dates, etc. Try a more straightforward approach first:

[PHP] Cache

2003-08-19 Thread Klaus Kaiser Apolinário
This is the header of my aplication

[PHP] Cache Question

2003-08-14 Thread Tony Tzankoff
I have a webpage written in the latest version of PHP and need a little bit of help with a rather pesky cache issue. Part of the source code is as follows: page.php "; echo ""; . . . echo ""; ?> The page does not cache (which is good), but the MP3 file does (which is b

Re: [PHP] Cache Question

2003-08-14 Thread Chris Shiflett
--- Tony Tzankoff <[EMAIL PROTECTED]> wrote: > I have a webpage written in the latest version of PHP and need > a little bit of help with a rather pesky cache issue. Part of > the source code is as follows: > > page.php > echo ""; > echo ""; > echo ""; > ?> > > The page does

[PHP] cache

2003-06-11 Thread Diana Castillo
what code can I put at the begining of a php page so that the result from the cache is never shown ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Cache caches anyway, regardless

2002-12-02 Thread Justin French
on 02/12/02 10:49 PM, Elmota Abdul Ayyash ([EMAIL PROTECTED]) wrote: > i had this problem when my pages were cached when I wanted them to be > refreshed, so I went deep in it and included all the recomended headers > by the manual, and it worked fine.. I also tried on a clean version, by > emptyin

[PHP] Cache caches anyway, regardless

2002-12-02 Thread Elmota Abdul Ayyash
i had this problem when my pages were cached when I wanted them to be refreshed, so I went deep in it and included all the recomended headers by the manual, and it worked fine.. I also tried on a clean version, by emptying up the browser cache and temp files on my client machine... until one page

[PHP] Cache issue

2002-07-31 Thread Chris Kay
Question. I have a problem with forms not been cached when they click submit... And then the back button, I know of some fields that can not be cached (password), I am thinking I am not doing something that asks it to cache.. Anyone have any tips or a place to start looking. Thanks

[PHP] cache control and cookies...

2002-05-31 Thread Gerard Samuel
I dont know too much about cache control, but some of the users who use my script, has problems with cookies. They are able to log in and the cookie is set and they click a link and get booted out. This past week, we noticed that when we commented out header ("Expires: Mon, 26 Jul 1997 05:00:0

RE: [PHP] Cache Control

2002-05-31 Thread Jon Haworth
Hi Jeroen, > I want info on the internet where i can find a manuel. http://www.google.com/search?q=http+cache+control+headers > the page is a php script and sometimes it comes out of a proxy but > that is not allowed. It's not something you have absolute control over - some proxies are configu

Fwd: RE: [PHP] Cache Control

2002-05-31 Thread Jeroen Timmers
>Date: Fri, 31 May 2002 12:13:40 +0200 >To: Jon Haworth <[EMAIL PROTECTED]> >From: Jeroen Timmers <[EMAIL PROTECTED]> >Subject: RE: [PHP] Cache Control > >I want info on the internet where i can find a manuel. > >I want a statement that de page always ref

RE: [PHP] Cache Control

2002-05-31 Thread Jon Haworth
Hi Jeroen, > > > Where i can find more help about cache control > > > > http://www.google.com/search?q=help+about+cache+control > > Or did you mean something a bit more specific? > > indeed > more specific Well, seeing as you're not sharing the actual question with the mailing list, this answer

RE: [PHP] Cache Control

2002-05-31 Thread Jeroen Timmers
indeed more specific Jeroen At 11:00 31-5-2002 +0100, you wrote: >Hi Jeroen, > > > Where i can find more help about cache control > >Here: http://www.google.com/search?q=help+about+cache+control (495,000 >results) > >Or did you mean something a bit more specific? > >Cheers >Jon > >-- >PHP Gener

RE: [PHP] Cache Control

2002-05-31 Thread Jon Haworth
Hi Jeroen, > Where i can find more help about cache control Here: http://www.google.com/search?q=help+about+cache+control (495,000 results) Or did you mean something a bit more specific? Cheers Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/un

[PHP] Cache Control

2002-05-31 Thread Jeroen Timmers
Where i can find more help about cache control Thx Jeroen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] cache

2002-03-06 Thread bvr
Hallo Jeroen ;) There are several ways to control the caching of pages and images, including sending headers and META tags. These are ofcourse HTML/HTTP features and not specific to PHP. Because it seems to be needed to send a combination of these to make it work for a situations, I prefer a

[PHP] cache

2002-03-06 Thread Jeroen Timmers
is there some command with php dat the page some images not load out the cache but reloading the image? Thx Jeroen

Re: [PHP] Cache Being Bad

2002-02-11 Thread nate
2002 8:19 PM Subject: [PHP] Cache Being Bad I have a text box on my page and a submit button. The text box value is whatever it grabs from the database. If the user deletes what is in the text box and puts in his own text, then hits submit, the script updates that field with whatever the user inpu

[PHP] Cache Being Bad

2002-02-11 Thread nate
I have a text box on my page and a submit button. The text box value is whatever it grabs from the database. If the user deletes what is in the text box and puts in his own text, then hits submit, the script updates that field with whatever the user inputs. Problem is, after the user hits sub

[PHP] Cache-Control: no-cache and browser back button problem

2002-02-10 Thread Steven Haryanto
why does the cache control header generated by php (under session_cache_limiter = nocache) needs to have no-store? It makes pressing Back in the browser requests a new version of the page (which is unwanted in some situations, e.g. while filling form and needs to edit a few fields before re-su

[PHP] Cache Control

2001-11-18 Thread Jeff Sittler
How do I set a page to cache for only 5 minutes? In ASP, I ahve used: <% Response.CacheControl = "no-cache" Response.AddHeader "Pragma", "no-cache" Response.Expires = -1 if Session("svUsername") = "" then response.redirect "../login/accessDenied.asp" %> and I could just change the Response.Ex

RE: [PHP] Does PHP + PHP CACHE can vs JSP ?

2001-09-27 Thread Maxim Maletsky \(PHPBeginner.com\)
. Most of other developers will probably agree with me. Maxim Maletsky www.PHPBeginner.com -Original Message- From: mydata [mailto:[EMAIL PROTECTED]] Sent: giovedì 27 settembre 2001 9.04 To: [EMAIL PROTECTED] Subject: Re: [PHP] Does PHP + PHP CACHE can vs JSP ? I just want to know which

Re: [PHP] Does PHP + PHP CACHE can vs JSP ?

2001-09-27 Thread Rasmus Lerdorf
effective, which is > > Open Source, which is Better... > > > > -Jason Garber > > deltacron.com > > > > At 02:48 PM 9/27/2001 +0800, mydata wrote: > > >Hi, > > >I heard about JSP a lot recently though I doing PHP programing now. > > >somebody said js

Re: [PHP] Does PHP + PHP CACHE can vs JSP ?

2001-09-26 Thread mydata
eard about JSP a lot recently though I doing PHP programing now. > >somebody said jsp is most fastest in (asp , php , jsp). > >I want to know if it is true . And if I use PHP + php cache , can I speed up > >PHP as same as JSP as they said. > > > >I just want to know wh

Re: [PHP] Does PHP + PHP CACHE can vs JSP ?

2001-09-26 Thread Jason G.
/2001 +0800, mydata wrote: >Hi, >I heard about JSP a lot recently though I doing PHP programing now. >somebody said jsp is most fastest in (asp , php , jsp). >I want to know if it is true . And if I use PHP + php cache , can I speed up >PHP as same as JSP as they said. > >I ju

[PHP] Does PHP + PHP CACHE can vs JSP ?

2001-09-26 Thread mydata
Hi, I heard about JSP a lot recently though I doing PHP programing now. somebody said jsp is most fastest in (asp , php , jsp). I want to know if it is true . And if I use PHP + php cache , can I speed up PHP as same as JSP as they said. I just want to know which is the best solution ,(php + php

RE: [PHP] Cache Control with forms

2001-04-20 Thread Diego Fulgueira
m: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Thursday, 19 April, 2001 8:34 PM To: Diego Fulgueira Cc: Php-General Subject: Re: [PHP] Cache Control with forms > Hi everyone! I have the following problem: > I don't want any of my site's pages to be saved on any browser's cac

Re: [PHP] Cache Control with forms

2001-04-19 Thread Rasmus Lerdorf
> Hi everyone! I have the following problem: > I don't want any of my site's pages to be saved on any browser's cache. > Yet, I want all HTML forms to keep their data when the user changes to > another page without submiting and then comes back using the back button. > > I have seen changing the

[PHP] Cache Control with forms

2001-04-19 Thread Diego Fulgueira
Hi everyone! I have the following problem: I don't want any of my site's pages to be saved on any browser's cache. Yet, I want all HTML forms to keep their data when the user changes to another page without submiting and then comes back using the back button. I have seen changing the session.cac

Re: [PHP] Cache bypass

2001-03-23 Thread Richard Lynch
e Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "Barry Russell" <[EMAIL PROTECTED]> Newsgroups: php.general Sent: Tuesday, March 20, 2001 8:25 PM Subject: [PHP] Cache bypass > Can any

RE: [PHP] Cache

2001-03-20 Thread Matt Stone
No prob, that works fine. Thanks so much :) -Original Message- From: Tyrone Mills [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 21 March 2001 2:04 PM To: Matt Stone; PHPlist Subject: RE: [PHP] Cache Yup, at the beginning of your PHP script. Sorry, I should have mentioned that

RE: [PHP] Cache

2001-03-20 Thread Tyrone Mills
Yup, at the beginning of your PHP script. Sorry, I should have mentioned that... :) -Original Message- From: Matt Stone [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 8:04 PM To: Tyrone Mills; PHPlist Subject: RE: [PHP] Cache That goes in the PHP code no? -Original

RE: [PHP] Cache

2001-03-20 Thread Matt Stone
That goes in the PHP code no? -Original Message- From: Tyrone Mills [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 21 March 2001 1:56 PM To: Matt Stone; PHPlist Subject: RE: [PHP] Cache Hi Matt, For a very extensive solution, check this out: http://www.zend.com/codex.php?id=435&sing

RE: [PHP] Cache

2001-03-20 Thread Tyrone Mills
ot;Pragma: no-cache"); header("Expires: Mon,26 Jul 1997 05:00:00 GMT"); -Original Message- From: Matt Stone [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 7:39 PM To: PHPlist Subject: [PHP] Cache Hi, This might be a little of topic... I am having real trouble with cach

[PHP] Cache

2001-03-20 Thread Matt Stone
Hi, This might be a little of topic... I am having real trouble with cached PHP pages, they just never seem to refresh... I have dissabled my local cache (IE5.5 Win2k) to the best of my knowledge (suggestions on how to do this properly welcome) but are still having trouble. I am not sure whether i

[PHP] Cache bypass

2001-03-20 Thread Barry Russell
Can anyone point me at a way to pick up a url entered in a form and construct an HTTP request that will download the requested page into the browser window with an enforced refresh that bypasses a local cache ? (I have a tough local policy to get thru which doesn't take account of developers

AW: AW: [PHP] Cache Database-driven site

2001-03-13 Thread Joe Maier
Aaron, this is obviously exactly what i need!! Thanks a lot - this saved me days of work! Joe -Ursprungliche Nachricht- Von: Aaron Tuller [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 13. Marz 2001 05:41 An: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Betreff: Re: AW: [PHP] Cache Database

Re: AW: [PHP] Cache Database-driven site

2001-03-12 Thread Aaron Tuller
on: Aaron Tuller [mailto:[EMAIL PROTECTED]] >Gesendet: Montag, 12. Marz 2001 23:26 >An: [EMAIL PROTECTED]; [EMAIL PROTECTED] >Betreff: Re: [PHP] Cache Database-driven site > > >At 11:19 PM +0100 3/12/01, Joachim Maier wrote: >>To create the HTML-cache page i need to build the w

RE: [PHP] Cache Database-driven site

2001-03-12 Thread Jon Snell
rl scripts, and run these from cron. Using server-side-includes can make this a much easier process. -Original Message- From: Joachim Maier [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 4:20 PM To: [EMAIL PROTECTED] Subject: [PHP] Cache Database-driven site Hi all, i'm a

Re: AW: [PHP] Cache Database-driven site

2001-03-12 Thread Andrew Hill
lease gimme a pointer on where i can find these functions > and what's their name. Are they available in php3? > > Thanks a lot, > Joe > > -Ursprungliche Nachricht- > Von: Aaron Tuller [mailto:[EMAIL PROTECTED]] > Gesendet: Montag, 12. Marz 2001 23:26 >

AW: [PHP] Cache Database-driven site

2001-03-12 Thread Joe Maier
Von: Aaron Tuller [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 12. Marz 2001 23:26 An: [EMAIL PROTECTED]; [EMAIL PROTECTED] Betreff: Re: [PHP] Cache Database-driven site At 11:19 PM +0100 3/12/01, Joachim Maier wrote: >To create the HTML-cache page i need to build the whole HTML-page conte

Re: [PHP] Cache Database-driven site

2001-03-12 Thread Aaron Tuller
At 11:19 PM +0100 3/12/01, Joachim Maier wrote: >To create the HTML-cache page i need to build the whole HTML-page content in >memory, instead of echoing it back to the user's browser, and finally write >it to disk. That means, i have to write all HTML in php-code. I can't just >embed php-parts in

[PHP] Cache Database-driven site

2001-03-12 Thread Joachim Maier
Hi all, i'm appreciating any comments on this idea: I'm about to create a completely database driven site (mySQL). Almost all of the output is generated from database data. A big part of the data is rather static of nature, eg. updated once a month. A smaller part is quite dynamic, e.g. content

[PHP] Cache Problem

2001-02-20 Thread Peter Houchin
Hiya, I have a question with reguard to Cache At the moment I'm using but when i go view the page in NN all the data comes up but if say i wanted to print the data it prints a page saying "Data Missing" .. this document resulted from a POST operation and has expired from cache..." and I don

Re: [PHP] cache problem

2001-02-16 Thread Chris Lee
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); header('Cache-Control: no-cache, must-revalidate'); header('Pragma: no-cache'); -- Chris Lee Mediawaveonline.com em. [EMAIL PROTECTED] ph. 250.377.1095 ph. 250.376.2690 fx

[PHP] cache problem

2001-02-16 Thread Jan Grafström
Hi! I have this php answer on the request sent from flash5 to serverside php-file: records=8&score0=14&name0=janna&med0=hej4&date0=16:11:32&score1=13&name1=janna&med1=hej3&date1=16:06:52&score2=12&name2=janna&med2=hej2&date2=16:06:42&score3=11&name3=janna&med3=hej&date3=16:06:31&score4=10&name4=J

[PHP] Alternative PHP Cache

2001-02-06 Thread Herman Tolentino
Dear folks, Anybody out there with experience using Alternative PHP Cache (http://apc.communityconnect.com)? I am at a loss for information regarding its use with PHP, specifically, Zend Optimizer. Thanks in advance. Herman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

Re: [PHP] APC Alternative PHP Cache Release Announcement

2001-01-12 Thread Monte Ohrt
ce the release of the APC Alternative PHP Cache > > http://apc.communityconnect.com/ . APC works by caching the scripts in > > shared memory post-compilation to effectively eliminate the overhead of > > parsing and compilation. APC was developed as a completely free and > > ope

  1   2   >