Recent content by pdubs10

  1. P

    Building a website with an image uploader - multiple servers

    I'd consider ditching filesystems and folders and the like and going with a NoSQL-style solution. Couchbase does the whole clustering and auto-sharding thing automatically so growth and scalability are really easy to handle. This way you can just have a url like...
  2. P

    Best mySQL datatype for wysiwg text editor content

    With mySQL you're looking at using TEXT, MEDIUMTEXT, or LONGTEXT. Those types offer out-of-row string storage with different character limits (65535, 16777215, and 4294967295, respectively).