Responses are considered immutable; all methods that might change state MUST be implemented such that they retain the internal state of the current message and return an instance that contains the changed state.
HTTP 响应是被视为无法修改的,所有能修改状态的方法,都必须有一套机制,在内部保持好原有的内容,然后把修改状态后的,新的 HTTP 响应实例返回。
我的理解是,response 对象一旦生成就不允许修改,如果在控制器中需要添加一条新的 header 头信息,都需要克隆旧的 response 对象,然后在新对象中添加,返回新的对象。如果要添加 10 条 header 头信息,那么就要生成 11 个 response 对象。
不知道我的理解是不是正确的,如果真的是这样,考虑不到它的意义,反而感觉是一种内存的浪费啊。为什么还要保留之前旧的 response 对象?直接在当前的 response 对象里添加就好了啊,反正也能返回一次。
1
jessynt 2017-10-19 22:54:52 +08:00
|
2
hantsy 2017-10-19 23:31:14 +08:00
React/Redux 引以自豪就是数据流的 immutable, 以大幅提高性能。但我不知道 PHP 底层实现与 React 是否有可比性。
|
3
linpf OP |
4
zjsxwc 2017-10-20 13:34:17 +08:00
感觉和 erlang 之类的消息不可变原则一样的原因
|
5
zjsxwc 2017-10-20 13:36:14 +08:00
只能克隆创建新的, 不能修改原来的, 可以避免很多情况下的副作用
|