summaryrefslogtreecommitdiff
path: root/docs/php/caveats.md
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-09-10 15:46:02 +0300
committerValery Piashchynski <[email protected]>2021-09-10 15:46:02 +0300
commit8fa86886bd5b3c12cf161fb2c1cdd9a2cd53d1bf (patch)
tree852269ac09c0bcefba6e508fc04263dc061fa87b /docs/php/caveats.md
parent8b70fb48b2b0a9451d9b82a17ac2f4cd8a1f561e (diff)
Remove docs
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'docs/php/caveats.md')
-rw-r--r--docs/php/caveats.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/php/caveats.md b/docs/php/caveats.md
deleted file mode 100644
index 6bb834c4..00000000
--- a/docs/php/caveats.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Caveats
-
-## Uploading Files
-Since file-upload is handled on RR end PHP process will only receive the filename of temporary resources.
-This resource would not be registered in `uploaded files` hash and, as a result, function `is_uploaded_file` will always return `false`.
-
-> Reference: https://github.com/spiral/roadrunner/issues/133
-
-## Exit and Die functions
-Please note that you should not use any of the following methods `die`, `exit`. Use buffered output if your library requires writing content to stdout.
-
-## WinCache
-Using roadrunner on Windows with WinCache extension might cause worker bytecode to stuck in memory.