问题列表 - 第43107页

什么是存储和访问图像的最有效方法

我正在开发一个项目,它必须在服务器上存储成千上万的图像,并让用户访问它们.我需要最有效的方法来存储这些图像并检索它们.另外,我需要有关我应该选择哪种技术的信息.我还没有开始这个项目.所以,我在PHP w/CodeIgniter和Ruby on Rails之间思考.

该站点托管许多仅由内容的作者上载的图像,而不是用户上载的图像.

php database storage ruby-on-rails image

0
推荐指数
1
解决办法
1242
查看次数

什么是"将移动语义扩展到*这个"?

请问,有人可以用简单的英语解释什么是"将移动语义扩展到*这个"?我指的是这个提议.所有我们正在寻找的是什么,为什么我们需要它.请注意,我确实理解rvalue引用通常是什么,构建了移动语义.我无法理解这样的扩展为rvalue引用添加了什么!

c++ this rvalue move-semantics c++11

11
推荐指数
2
解决办法
424
查看次数

NHibernate:如何解决这个"方言"配置问题

遇到的问题

在运行时,我总是得到以下内容NHibernate.MappingException:

"Could not compile the mapping document: GI.InventoryManager.CYB.Mappings.Part.hbm.xml"
Run Code Online (Sandbox Code Playgroud)

是的,它的构建操作设置为Embedded Resource.InnerException说:

"Could not find the dialect in the configuration"
Run Code Online (Sandbox Code Playgroud)

需要的信息

这是我的配置文件名为hibernate.cfg.xml:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration  xmlns="urn:nhibernate-configuration-2.2" >
  <session-factory>
    <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
    <property name="connection.connection_string">
        Server=(local);initial catalog=GI_IM_CYB;Integrated Security=SSPI
    </property>
    <property name="adonet.batch_size">10</property>
    <property name="show_sql">false</property>
    <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
    <property name="use_outer_join">true</property>
    <property name="command_timeout">60</property>
    <property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
    <property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory,     NHibernate.ByteCode.Castle</property>
  </session-factory>
</hibernate-configuration>
Run Code Online (Sandbox Code Playgroud)

实际上是Configuration_Templates文件夹中的复制粘贴,其中我只更改了以下信息:

Session Factory: "Removed the NHibernate.Test namespace and let the property …
Run Code Online (Sandbox Code Playgroud)

.net nhibernate nhibernate-configuration dialect

7
推荐指数
1
解决办法
2万
查看次数

C中的编译时三角学

我目前的代码看起来像

while (very_long_loop) {
    ...
    y1 = getSomeValue();
    ...
    x1 = y1*cos(PI/2);
    x2 = y2*cos(SOME_CONSTANT);
    ...
    outputValues(x1, x2, ...);
}
Run Code Online (Sandbox Code Playgroud)

显而易见的优化是提前计算余弦.我可以通过使用值填充数组来做到这一点,但我想知道是否可以让编译器在编译时计算它们?

编辑:我知道C没有编译时评估,但我希望有一些奇怪和丑陋的方式来做宏.

c optimization

6
推荐指数
1
解决办法
1190
查看次数

嵌套的content_tag在简单的帮助器中抛出未定义的方法`output_buffer =`

我正在尝试创建一个简单的视图助手,但是当我尝试嵌套几个内容标签时它会抛出

NoMethodError: undefined method `output_buffer=' for

def table_for(list, &proc)
  t = Table.new
  proc.call(t)
  t.render_column(list) 
end

class Table
  include ActionView::Helpers::TagHelper

  attr_accessor :columns, :block

  def initialize
    @columns = Array.new
  end

  def col(name)
    @columns << name
  end

  def render_column(list)
    content_tag :table do
      list.each do |c|
        content_tag :td, c
      end
    end
  end
end
Run Code Online (Sandbox Code Playgroud)

什么是错的任何提示?我也看到有一个XmlBuilder对我的目的更好吗?

ruby-on-rails-3

28
推荐指数
2
解决办法
1万
查看次数

mnesia:密集使用表

当我收到这样的消息时,像这样:

** WARNING ** Mnesia is overloaded: {dump_log, write_threshold}
Run Code Online (Sandbox Code Playgroud)

什么是知道哪个表被密集使用的方法?我需要做什么样的调试?

谢谢.

erlang mnesia

7
推荐指数
1
解决办法
3276
查看次数

.net:为什么在命名空间中使用int是不合法的?

为什么命名空间中有"int"是不合法的?"int"是一种类型.对?就像"上课"一样.我知道它们之间存在差异,但有两种数据类型.

namespace Ikco.Crp.UI.Common
{
    public int i;
    ....
    ....
}
Run Code Online (Sandbox Code Playgroud)

微软的想法是什么?

.net c# types namespaces

0
推荐指数
1
解决办法
315
查看次数

使用FLAG_ACTIVITY_REORDER_TO_FRONT时,overridePendingTransition不起作用

我在堆栈中有两个活动,为了显示它们我使用FLAG_ACTIVITY_REORDER_TO_FRONT.到目前为止,当我想使用overridePendingTransition为动画带来动画时,问题就出现了.

Intent i = new Intent(ActivityA.this, ActivityB.class);
i.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT); 
ActivityA.this.startActivity(i);
overridePendingTransition(R.anim.transition_to_right, R.anim.transition_to_left);
Run Code Online (Sandbox Code Playgroud)

但是,如果没有将标志添加到意图(删除第2行),则不会显示转换,则没有问题.

是否可以通过动画将活动带到前面?

非常感谢!

flags android transition android-intent

26
推荐指数
4
解决办法
3万
查看次数

在Java错误中实例化Dictionary <T,U>

在C#中

Dictionary<String, String> dictionary = new Dictionary<String, String>();
Run Code Online (Sandbox Code Playgroud)

在Java中,这个错误随之而来

无法实例化类型Dictionary

可能有什么不对?

在我的代码中,接下来是

dictionary.put("vZip", jsonUdeals.getString("vZip"));
Run Code Online (Sandbox Code Playgroud)

我知道这听起来太琐碎了.但我不知所措!
如果Dictionary没有这样做(我现在强烈怀疑),那么使用哪个DataStructure.

java generics dictionary

35
推荐指数
1
解决办法
5万
查看次数

在其他表单元素上的氮(Erlang Web框架)文件上载和验证器

我有一个#upload元素和一个#textarea元素.当用户按下按钮上传文件时,#textarea也会被发布,我可以在finish_upload_even/4函数中使用wf:q/1接收它.这一切都很好但我想将#validator连接到#textarea并且找不到要使用的TriggerId.我误解了某些东西还是这个功能不明显?也许现在甚至不可能?

BR,丹尼尔

erlang nitrogen

5
推荐指数
0
解决办法
525
查看次数