- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我声称:Python 中的链接生成器内存效率低下,并且使它们无法用于某些类型的应用程序。如果可能,请证明我是错的。
首先,一个没有生成器的非常简单直接的例子:
import gc
def cocktail_objects():
# find all Cocktail objects currently tracked by the garbage collector
return filter(lambda obj: isinstance(obj, Cocktail), gc.get_objects())
class Cocktail(object):
def __init__(self, ingredients):
# ingredients represents our object data, imagine some heavy arrays
self.ingredients = ingredients
def __str__(self):
return self.ingredients
def __repr__(self):
return 'Cocktail(' + str(self) + ')'
def create(first_ingredient):
return Cocktail(first_ingredient)
def with_ingredient(cocktail, ingredient):
# this could be some data transformation function
return Cocktail(cocktail.ingredients + ' and ' + ingredient)
first_ingredients = ['rum', 'vodka']
print 'using iterative style:'
for ingredient in first_ingredients:
cocktail = create(ingredient)
cocktail = with_ingredient(cocktail, 'coke')
cocktail = with_ingredient(cocktail, 'limes')
print cocktail
print cocktail_objects()
rum and coke and limes
[Cocktail(rum and coke and limes)]
vodka and coke and limes
[Cocktail(vodka and coke and limes)]
class create_iter(object):
def __init__(self, first_ingredients):
self.first_ingredients = first_ingredients
self.i = 0
def __iter__(self):
return self
def next(self):
try:
ingredient = self.first_ingredients[self.i]
except IndexError:
raise StopIteration
else:
self.i += 1
return create(ingredient)
class with_ingredient_iter(object):
def __init__(self, cocktails_iter, ingredient):
self.cocktails_iter = cocktails_iter
self.ingredient = ingredient
def __iter__(self):
return self
def next(self):
cocktail = next(self.cocktails_iter)
return with_ingredient(cocktail, self.ingredient)
print 'using iterators:'
base = create_iter(first_ingredients)
with_coke = with_ingredient_iter(base, 'coke')
with_coke_and_limes = with_ingredient_iter(with_coke, 'limes')
for cocktail in with_coke_and_limes:
print cocktail
print cocktail_objects()
def create_gen(first_ingredients):
for ingredient in first_ingredients:
yield create(ingredient)
def with_ingredient_gen(cocktails_gen, ingredient):
for cocktail in cocktails_gen:
yield with_ingredient(cocktail, ingredient)
print 'using generators:'
base = create_gen(first_ingredients)
with_coke = with_ingredient_gen(base, 'coke')
with_coke_and_limes = with_ingredient_gen(with_coke, 'limes')
for cocktail in with_coke_and_limes:
print cocktail
print cocktail_objects()
rum and coke and limes
[Cocktail(rum), Cocktail(rum and coke), Cocktail(rum and coke and limes)]
vodka and coke and limes
[Cocktail(vodka), Cocktail(vodka and coke), Cocktail(vodka and coke and limes)]
print 'using imap:'
from itertools import imap
base = imap(lambda ingredient: create(ingredient), first_ingredients)
with_coke = imap(lambda cocktail: with_ingredient(cocktail, 'coke'), base)
with_coke_and_limes = imap(lambda cocktail: with_ingredient(cocktail, 'limes'), with_coke)
for cocktail in with_coke_and_limes:
print cocktail
print gc.collect()
print cocktail_objects()
itertools.imap
你不能保持任何状态。
最佳答案
您的 with_coke_and_limes
在执行过程中的某个点产生 yield 。此时,该函数有一个名为 cocktail
的局部变量。 (来自它的 for
循环)它指的是生成器嵌套中下一步的“中间”鸡尾酒(即“朗姆酒和可乐”)。仅仅因为生成器在那个时候产生并不意味着它可以扔掉那个对象。 with_ingredient_gen
的执行在那一点被挂起,在这一点上局部变量 cocktail
仍然存在。该函数在恢复后可能需要稍后引用它。没有什么可以说 yield
必须是您 for
中的最后一件事循环,或者只有一个 yield
.你可以写 with_ingredient_gen
像这样:
def with_ingredient_gen(cocktails_gen, ingredient):
for cocktail in cocktails_gen:
yield with_ingredient(cocktail, ingredient)
yield with_ingredient(cocktail, "another ingredient")
cocktail
在第一次产生之后,当它在下一次迭代中恢复生成器并发现它需要
cocktail
时,它会做什么?再次反对第二次 yield ?
with_coke_and_limes
调制鸡尾酒,
with_coke
和
base
也被激活然后暂停,并且它们有指代自己的中间鸡尾酒的局部变量。如上所述,这些函数不能删除它们所引用的对象,因为它们在恢复后可能需要它们。
for ingredient in first_ingredients:
cocktail = create(ingredient)
cocktail2 = with_ingredient(cocktail, 'coke')
cocktail3 = with_ingredient(cocktail, 'limes')
print cocktail3
print cocktail_objects()
Cocktail
对象,不要创建它们。不是让每个生成器创建鸡尾酒,然后让下一个生成器提取前一个鸡尾酒的成分,而是让生成器只传递成分,并使用一个最终生成器将堆叠的成分组合在一起,并在最后创建一种鸡尾酒。
关于python - 链接发电机被认为是有害的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26186426/
我正在处理一个 ConditionalCheckFailedException,我不确定是哪个条件未通过检查。当我打开调试器并检查异常变量时,我找不到任何有用的信息。 下面是我的 Java Dynam
我安装了 Mogenerator。现在我该怎么办?如何使用它? 我遇到的第一个问题是,我不知道是否为 mogenerator 检查复选框“仅在安装时运行脚本”? 最佳答案 您具体指的是哪个复选框?一个
我需要使用 swing 开发一些 java gui。 几年前,我确实开发了一些swing。 但是您知道,过去没有太多工具可以帮助您,这让您感到非常疲惫。 但我确实相信今天应该更容易,必须有工具。 我想
我正在尝试生成 Mersenne Twister 生成器,但我总是收到此消息“MersenneTwister 无法解析为类型”这是我的代码 public class RandomVariable {
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 2 年前。 Improve t
我不小心安装了一个我不想要的生成器。 我找不到任何方法来删除它。 我应该怎么做才能实现这个目标? 最佳答案 生成器只是普通的 npm 模块,因此您可以使用以下命令删除它 npm uninstall -
我有一个架构,其中包含一个名为 ids(数字列表)的字段 如何创建 QuerySpec 来过滤包含指定列表的所有值的项目? 例如: item 1: ids=[1,2,3] item 2: ids=[1
我们的应用程序有一段时间的延迟,这与 DynamoDB 的延迟直接相关,我们正试图找出导致延迟的原因。 在此期间,表的消耗读取和消耗写入是正常的(远低于配置的容量),并且受限请求的数量也是 0 或
根据 DynamoDB 文档,如果使用受支持的 SDK,导致数据库节流的请求会自动重试。但是,我找不到任何关于 boto 如何处理节流情况的提及。 boto 会自动重试受限请求还是我应该开始捕获 Pr
长话短说 我有一张表, 这个月有大约 200 万次 WRITE 和 0 次 READ。每个月的第一天,我需要读取上个月写入的所有行并生成 CSV + 统计信息。 在这种情况下如何使用 DynamoDB
我想存储属于某个父对象的项目列表。 父对象如下所示: user_id - hash key timestamp - range key attributeA - String attributeB -
我正在尝试使用 express 生成器生成一个 express 骨架。所以应该是这样的: $ npm install express-generator -g 但是,它添加了一堆自动 Jade 文件。
我正在寻找简单易懂的 React Redux 入门包。 Eslint linting、webpack devserver 热重载和测试运行器。 我想要一些比 React Starter Pack 更简
这是一个用 C 编写的快速排序程序,该程序编译没有任何错误。但是当运行并选择随机数进行排序时。我得到的输出如下, sam@TechTosh ~ $ gcc quick.c sam@TechTosh ~
我正在尝试读取 DynamoDB 表中高于特定值的所有值。我将主分区键设置为一个名为 Project_ID 的数字。我正在运行查询以查看高于某个 ID 的所有值 - 主要是为了测试功能,但是在运行代码
我在 DynamoDB 表中有一个类型为 Number 的键。我将操作设置为 ADD 以将值添加到现有值。 DynamoDBAttributeValue *attr =
我正在查询两个特定 unixtime 值之间的数据。例如: 1516338730(今天6:12)到1516358930(今天11:48)之间的所有数据 我的数据库每分钟收到一条新记录。现在,当我想查询
只是探索 node.js 并遇到了 express;在 npm 存储库站点上 https://www.npmjs.com/package/express它清楚地表明安装是 $ npm install
我有一个 DynamoDB 表 users,其文档结构类似于以下内容: { "id": "1", "name": "john", "hobbies": [ { "des
我现在刚刚使用 Amazon AWS DynamoDB。在 Future 中,我想将 Items 放在我的表中,但前提是不存在具有相同键的 Item,这样我就不会覆盖现有值。你知道我是怎么做到的吗?我
我是一名优秀的程序员,十分优秀!