What’s the difference between CharField and TextField in Django?

The documentation says that CharField() should be used for smaller strings and TextField() should be used for larger strings.

Okay, but where is the line drawn between “small” and “large”? What’s going on under the hood here that makes this the case?

5 Answers
5

Leave a Comment