fistameeny
fistameeny

Reputation: 1131

Is it possible to remove a single file from PHP APC cache?


I've got PHP APC running on my CentOS server, with apc.stat = 0 for performance reasons

There are certain PHP files that change fairly frequently that i'd like to be able to remove from the APC cache at will - is is possible to remove single files from the cache?

Thanks in advance!

Upvotes: 1

Views: 2222

Answers (1)

Mark Baker
Mark Baker

Reputation: 212412

Would you believe

apc_delete_file()

or you can do it manually using apc.php

Upvotes: 1

Related Questions